2010-05-07 19:23:36 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2009-2010, Andrea Anzani. All rights reserved.
|
|
|
|
* Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Andrea Anzani, andrea.anzani@gmail.com
|
|
|
|
* Pier Luigi Fiorini, pierluigi.fiorini@gmail.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Singleton.h"
|
|
|
|
|
2010-05-19 15:37:26 -05:00
|
|
|
|
2010-05-19 16:36:36 -05:00
|
|
|
template<typename T> T* Singleton<T>::fInstance = 0;
|