CoreUtils/IMFBoundary.cpp
2025-12-15 16:53:49 -08:00

11 lines
217 B
C++

#include "IMFBoundary.h"
#include "Exception.h"
#include <unistd.h>
namespace coreutils {
IMFBoundary(StreamReader &reader, ZString boundary) : boundary(boundary) {
if(reader.unparsed().getLength()
}
}