| 123456789101112131415161718192021222324252627282930 |
- #ifndef _Mouchard_h_
- #define _Mouchard_h_
- #include "../Pattern/Singleton.h"
- #include <string>
- 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
|