diff options
Diffstat (limited to 'libvtv/testsuite/libvtv.cc/parts-test-main.h')
-rw-r--r-- | libvtv/testsuite/libvtv.cc/parts-test-main.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libvtv/testsuite/libvtv.cc/parts-test-main.h b/libvtv/testsuite/libvtv.cc/parts-test-main.h new file mode 100644 index 00000000000..fb631dec340 --- /dev/null +++ b/libvtv/testsuite/libvtv.cc/parts-test-main.h @@ -0,0 +1,15 @@ +#include <vector> + +class ExtraParts; + +class MainParts { + public: + MainParts (); + virtual ~MainParts (); + virtual void AddParts (ExtraParts *parts); + + virtual void PreEarlyInitialization (); + + protected: + std::vector<ExtraParts *> main_extra_parts_; +}; |