git-svn-id: https://clonekeenplus.svn.sourceforge.net/svnroot/clonekeenplus/cgenius/trunk@5 4df4b0f3-56ce-47cb-b001-ed939b7d65a6
25 lines
309 B
C++
25 lines
309 B
C++
/*
|
|
* CCGenius.h
|
|
*
|
|
* Created on: 18.05.2009
|
|
* Author: gerstrong
|
|
*/
|
|
|
|
#ifndef CCGENIUS_H_
|
|
#define CCGENIUS_H_
|
|
|
|
#include "CSingleton.h"
|
|
#define g_pCGenius CCGenius::Get()
|
|
|
|
class CCGenius : public CSingleton<CCGenius>
|
|
{
|
|
public:
|
|
CCGenius();
|
|
virtual ~CCGenius();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif /* CCGENIUS_H_ */
|