// // DemoAndLicensing_Test.h // // Created by Andrew Salamon on 12/14/07. // Copyright 2007 Machine Perception Laboratory, University of California San Diego. All rights reserved. // #ifndef __DEMO_AND_LICENSING_TEST_H__ #define __DEMO_AND_LICENSING_TEST_H__ #include "DemoAndLicensing.h" namespace CERT { class DemoAndLicensing_Test : public DemoAndLicensing { public: DemoAndLicensing_Test(); virtual ~DemoAndLicensing_Test(); bool createDirectories(); bool clearPaths(); bool blockPaths(); bool writeGivenDate( const bg::date &aDate ); protected: virtual bool readDemoStartDate(); virtual bool writeDemoStartDate(); }; } // end namespace CERT #endif // __DEMO_AND_LICENSING_TEST_H__