Singleton.cpp 372 B

123456789101112131415
  1. /*
  2. * Copyright 2009-2010, Andrea Anzani. All rights reserved.
  3. * Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
  4. * Distributed under the terms of the MIT License.
  5. *
  6. * Authors:
  7. * Andrea Anzani, andrea.anzani@gmail.com
  8. * Pier Luigi Fiorini, pierluigi.fiorini@gmail.com
  9. */
  10. #include "Singleton.h"
  11. template<typename T> T* Singleton<T>::fInstance = 0;