The-Powder-Toy/src/Singleton.h

17 lines
178 B
C
Raw Normal View History

2012-01-14 12:51:24 -06:00
#ifndef SINGLETON_H
#define SINGLETON_H
template<typename T>
class Singleton
{
public:
static T& Ref()
{
static T instance;
return instance;
}
};
#endif // SINGLETON_H