21 lines
276 B
C++
21 lines
276 B
C++
#ifndef __IMFBoundary_h__
|
|
# define __IMFBoundary_h__
|
|
|
|
#include "StreamReader.h"
|
|
|
|
namespace coreutils {
|
|
|
|
class IMFBoundary {
|
|
|
|
public:
|
|
IMFBoundary(StreamReader &reader, ZString boundary);
|
|
|
|
private:
|
|
ZString boundary;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|