summaryrefslogtreecommitdiff
path: root/libvtv/testsuite/parts-test-main.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvtv/testsuite/parts-test-main.h')
-rw-r--r--libvtv/testsuite/parts-test-main.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/libvtv/testsuite/parts-test-main.h b/libvtv/testsuite/parts-test-main.h
new file mode 100644
index 00000000000..fb631dec340
--- /dev/null
+++ b/libvtv/testsuite/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_;
+};