24 lines
372 B
C++
24 lines
372 B
C++
#ifndef __IMFMultipart_h__
|
|
#define __IMFMultipart_h__
|
|
|
|
#include "PString.h"
|
|
#include "IMFBody.h"
|
|
|
|
namespace coreutils {
|
|
|
|
class IMFMultipart: public IMFBody {
|
|
|
|
public:
|
|
IMFMultipart();
|
|
IMFMultipart(PString &in, std::string boundary);
|
|
|
|
private:
|
|
std::string boundary;
|
|
std::vector<std::string> section;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|