Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:singleton_template [2015/12/21] – [History] terence | projects:singleton_template [2016/07/05] (current) – July 5, 2016 terence | ||
---|---|---|---|
Line 37: | Line 37: | ||
<code c++> | <code c++> | ||
- | #include "singleton.h" | + | #include "tSingleton.h" |
</ | </ | ||
* Create your own singleton class, ensuring that: | * Create your own singleton class, ensuring that: | ||
- | - You inherit from **'' | + | - You inherit from **'' |
- Your **constructor**' | - Your **constructor**' | ||
- Your **destructor** is **'' | - Your **destructor** is **'' | ||
Line 49: | Line 49: | ||
<code c++> | <code c++> | ||
class MyClass | class MyClass | ||
- | : public | + | : public |
{ | { | ||
protected: | protected: | ||
Line 62: | Line 62: | ||
//Methods go here | //Methods go here | ||
- | friend class tjgrant:: | + | friend class tSingleton< |
}; | }; | ||
</ | </ | ||
Line 109: | Line 109: | ||
class MyClass | class MyClass | ||
: public MyBase, | : public MyBase, | ||
- | public | + | public |
</ | </ | ||
Line 122: | Line 122: | ||
If you've found this project useful, [[: | If you've found this project useful, [[: | ||
===== History ===== | ===== History ===== | ||
+ | |||
+ | **July 5, 2016** | ||
+ | |||
+ | * Removed the namespace, renamed class from " | ||
**December 21, 2015** | **December 21, 2015** | ||
Line 131: | Line 135: | ||
* Created project page | * Created project page | ||
- |