Singleton< T > Class Template Reference

#include <cddefines.h>

Inherited by t_hydrobranch, and t_yield.


Static Public Member Functions

static T & Inst ()


Detailed Description

template<typename T>
class Singleton< T >

Singleton: template to construct classes where a single instance can be accessed across the entire program. Construct your class as follows:

class t_myclass : public Singleton<t_myclass> { friend class Singleton<t_myclass>; protected: t_myclass(); // make sure the contructor is protected! public: long myfunc() const { return 43; } };

and use as follows throughout the code:

long l = t_myclass::Inst().myfunc();

NB NB - This implementation is not threadsafe !!

Definition at line 77 of file cddefines.h.


Member Function Documentation

template<typename T>
static T& Singleton< T >::Inst (  )  [inline, static]


The documentation for this class was generated from the following file:

Generated for cloudy by doxygen 1.5.9