#ifndef __IMFMultipart_h__ #define __IMFMultipart_h__ #include "MString.h" #include "IMFFormData.h" #include namespace coreutils { class IMFMultipart { public: IMFMultipart(int fd, ZString boundary); private: MString boundary; std::vector sections; }; } #endif