CoreUtils/IMFFormData.h

23 lines
295 B
C
Raw Permalink Normal View History

2019-08-02 15:43:31 -07:00
#ifndef __IMFFormData_h__
2021-07-23 11:44:36 -07:00
# define __IMFFormData_h__
2019-08-02 15:43:31 -07:00
2021-07-23 11:44:36 -07:00
# include "IMFMultipart.h"
2019-08-02 15:43:31 -07:00
namespace coreutils {
2021-01-09 18:27:48 -08:00
2019-08-02 15:43:31 -07:00
class IMFFormData: public IMFMultipart {
2021-01-09 18:27:48 -08:00
2019-08-02 15:43:31 -07:00
public:
IMFFormData();
2022-01-24 14:03:58 -08:00
IMFFormData(ZString &in, ZString &boundary);
2019-08-02 15:43:31 -07:00
2022-01-24 14:03:58 -08:00
ZString getByName(ZString &name);
2021-01-09 18:27:48 -08:00
2019-08-02 15:43:31 -07:00
};
2021-01-09 18:27:48 -08:00
2019-08-02 15:43:31 -07:00
}
#endif
2021-01-09 18:27:48 -08:00