CoreUtils/IMFFormData.h
2019-08-02 15:43:31 -07:00

21 lines
311 B
C++

#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