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