CoreUtils/IMFFormData.cpp
2025-03-17 16:45:34 -07:00

16 lines
340 B
C++

#include "IMFFormData.h"
#include "IMFMessage.h"
#include "IMFText.h"
namespace coreutils {
IMFFormData::IMFFormData(int fd, ZString boundary) {
std::cout << "030" << std::endl;
IMFHeader header(fd);
std::cout << "031" << std::endl;
IMFText text(fd, boundary);
std::cout << "032" << std::endl;
}
}