24 lines
345 B
C++
24 lines
345 B
C++
#ifndef __IMFMultipart_h__
|
|
#define __IMFMultipart_h__
|
|
|
|
#include "MString.h"
|
|
#include "IMFFormData.h"
|
|
#include <vector>
|
|
|
|
namespace coreutils {
|
|
|
|
class IMFMultipart {
|
|
|
|
public:
|
|
IMFMultipart(int fd, MString boundary);
|
|
|
|
private:
|
|
MString boundary;
|
|
std::vector<IMFFormData> sections;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|