mistserver/MP4/box_minf.h
2011-01-12 13:40:08 +01:00

17 lines
307 B
C++

#include "box.h"
#include <vector>
#include <string>
class Box_minf {
public:
Box_minf();
~Box_minf();
Box * GetBox();
void AddContent( Box * newcontent, uint32_t offset = 0 );
private:
Box * Container;
void WriteContent( );
std::vector<Box *> Content;
};//Box_ftyp Class