#ifndef _Mouchard_h_ #define _Mouchard_h_ #include "../Pattern/Singleton.h" #include class Mouchard : public Singleton< Mouchard > { public: unsigned long GetMouchard(); bool IsDLLValid(); std::string GetExpirationDate(); protected: Mouchard(); friend class Singleton< Mouchard >; private: time_t mt; }; #endif