Skeleton for ABST box, all functionality removed for now.
This commit is contained in:
parent
17d6a04757
commit
2aa99228e8
2 changed files with 23 additions and 0 deletions
13
MP4/box_abst.cpp
Normal file
13
MP4/box_abst.cpp
Normal file
|
@ -0,0 +1,13 @@
|
|||
#include "box_abst.h"
|
||||
|
||||
Box_abst::Box_abst( ) {
|
||||
Container = new Box( 0x61627374 );
|
||||
}
|
||||
|
||||
Box_abst::~Box_abst() {
|
||||
delete Container;
|
||||
}
|
||||
|
||||
Box * Box_abst::GetBox() {
|
||||
return Container;
|
||||
}
|
10
MP4/box_abst.h
Normal file
10
MP4/box_abst.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include "box.h"
|
||||
|
||||
class Box_abst {
|
||||
public:
|
||||
Box_abst( );
|
||||
~Box_abst();
|
||||
Box * GetBox();
|
||||
private:
|
||||
Box * Container;
|
||||
};//Box_ftyp Class
|
Loading…
Add table
Reference in a new issue