From 2aa99228e8822466e5307ff75d914bbc65474b5c Mon Sep 17 00:00:00 2001 From: Erik Zandvliet Date: Mon, 7 Feb 2011 10:08:01 +0100 Subject: [PATCH] Skeleton for ABST box, all functionality removed for now. --- MP4/box_abst.cpp | 13 +++++++++++++ MP4/box_abst.h | 10 ++++++++++ 2 files changed, 23 insertions(+) create mode 100644 MP4/box_abst.cpp create mode 100644 MP4/box_abst.h diff --git a/MP4/box_abst.cpp b/MP4/box_abst.cpp new file mode 100644 index 00000000..6e264a1b --- /dev/null +++ b/MP4/box_abst.cpp @@ -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; +} diff --git a/MP4/box_abst.h b/MP4/box_abst.h new file mode 100644 index 00000000..5346b8cc --- /dev/null +++ b/MP4/box_abst.h @@ -0,0 +1,10 @@ +#include "box.h" + +class Box_abst { + public: + Box_abst( ); + ~Box_abst(); + Box * GetBox(); + private: + Box * Container; +};//Box_ftyp Class