mirror of
https://github.com/ProjectDreamland/area51.git
synced 2024-11-01 11:11:47 +01:00
17 lines
430 B
C++
17 lines
430 B
C++
//==============================================================================
|
|
//
|
|
// e_Singleton.hpp -- singleton interface
|
|
//
|
|
//==============================================================================
|
|
|
|
#ifndef _SINGLETON_HPP_
|
|
#define _SINGLETON_HPP_
|
|
|
|
template< class Type >struct singleton_t
|
|
{
|
|
static void Activate( void );
|
|
static void Release ( void );
|
|
static Type* me;
|
|
};
|
|
|
|
#endif
|