#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 sections; private: std::string boundary; coreutils::PString buffer; }; } #endif