// // DemoAndLicensing_Win.h // // Created by Andrew Salamon on 12/11/07. // Copyright 2007 Machine Perception Laboratory, University of California San Diego. All rights reserved. // #ifndef __DEMO_AND_LICENSING_WIN_H__ #define __DEMO_AND_LICENSING_WIN_H__ #include "DemoAndLicensing.h" namespace CERT { class DemoAndLicensing_Win : public DemoAndLicensing { public: DemoAndLicensing_Win(); virtual ~DemoAndLicensing_Win(); protected: virtual bool readDemoStartDate(); virtual bool writeDemoStartDate(); bool readKey( HKEY domain, int &val ); bool writeKey( HKEY domain, int val ); }; } // end namespace CERT #endif // __DEMO_AND_LICENSING_WIN_H__