16 lines
254 B
C++
16 lines
254 B
C++
#include "IMFMultipart.h"
|
|
|
|
namespace coreutils {
|
|
|
|
IMFMultipart::IMFMultipart() {
|
|
|
|
}
|
|
|
|
IMFMultipart::IMFMultipart(PString &in, std::string boundary) {
|
|
in.cursor -= 2;
|
|
section = in.split("\r\n--" + boundary);
|
|
|
|
}
|
|
|
|
}
|