CoreUtils/IMFMultipart.h
Brad Arant 7e06591de6 Sync.
2021-01-09 18:27:48 -08:00

30 lines
449 B
C++

#ifndef __IMFMultipart_h__
#define __IMFMultipart_h__
#include "PString.h"
#include "IMFBody.h"
namespace coreutils {
class IMFMultipart: public IMFBody {
public:
IMFMultipart(PString *in, std::string boundary);
std::string toString();
int getCount();
PString getSectionAt(int index);
protected:
std::vector<PString> sections;
private:
std::string boundary;
coreutils::PString buffer;
};
}
#endif