#ifndef __IMFFormData_h__ #define __IMFFormData_h__ #include "IMFMultipart.h" namespace coreutils { class IMFFormData: public IMFMultipart { public: IMFFormData(); IMFFormData(PString &in, std::string boundary); std::string getByName(std::string name); }; } #endif