area51/xCore/Entropy/e_Singleton.hpp
Andrew Sampson 431f72b93a source
2021-08-27 19:22:41 -07:00

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