30 lines
481 B
C++
30 lines
481 B
C++
#ifndef __IMFMultipart_h__
|
|
#define __IMFMultipart_h__
|
|
|
|
#include "MString.h"
|
|
#include <vector>
|
|
|
|
namespace coreutils {
|
|
|
|
class IMFMultipart {
|
|
|
|
public:
|
|
IMFMultipart(int fd, int length);
|
|
|
|
// std::string toString();
|
|
// int getCount();
|
|
// ZString getSectionAt(int index);
|
|
|
|
// protected:
|
|
// std::vector<ZString> sections;
|
|
|
|
private:
|
|
MString boundary;
|
|
std::vector<IMFFormData> sections;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|