#ifndef __IMFMultipart_h__ #define __IMFMultipart_h__ #include "MString.h" #include namespace coreutils { class IMFMultipart { public: IMFMultipart(int fd, int length); // std::string toString(); // int getCount(); // ZString getSectionAt(int index); // protected: // std::vector sections; private: MString boundary; std::vector sections; }; } #endif