gcc/libvtv/testsuite/libvtv.cc/parts-test-main.h
Caroline Tice 41e96dc8f0 Update libvtv testsuite so that most of the tests now run under
the dejagnu test harness.

From-SVN: r202373
2013-09-08 16:35:14 -07:00

16 lines
257 B
C++

#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_;
};