17 lines
273 B
C++
17 lines
273 B
C++
#include "box.h"
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
class Box_dinf {
|
|
public:
|
|
Box_dinf();
|
|
~Box_dinf();
|
|
Box * GetBox();
|
|
void AddContent( Box * newcontent );
|
|
void WriteContent( );
|
|
private:
|
|
Box * Container;
|
|
|
|
Box * Content;
|
|
};//Box_ftyp Class
|
|
|