mistserver/MP4/box_moov.h
Erik Zandvliet 927996365e More boxes
2011-01-13 15:19:12 +01:00

17 lines
307 B
C++

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