CoreUtils/IMFFormData.cpp
2025-02-21 13:22:57 -08:00

13 lines
225 B
C++

#include "IMFFormData.h"
#include "IMFMessage.h"
#include "IMFPlainText.h"
namespace coreutils {
IMFFormData::IMFFormData(int fd, ZString boundary) {
IMFHeader header(fd);
IMFText text(fd, boundary);
}
}