CoreUtils/IMFFormData.h
Brad Arant 7e06591de6 Sync.
2021-01-09 18:27:48 -08:00

23 lines
299 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