@@ -37,7 +37,7 @@ namespace vx {
3737 * @author Florian Becker <fb\@vxapps.com> (VX Apps)
3838 */
3939 template <class T >
40- class InstanceBase {
40+ class SingletonBase {
4141
4242 public:
4343 /* *
@@ -62,7 +62,7 @@ namespace vx {
6262 * @~german
6363 * @brief Entfernt den verschobenen Konstruktor.
6464 */
65- InstanceBase ( InstanceBase && ) = delete ;
65+ SingletonBase ( SingletonBase && ) = delete ;
6666
6767 /* *
6868 * @~english
@@ -73,7 +73,7 @@ namespace vx {
7373 * @brief Entfernt die kopierte Zuweisung.
7474 * @return Keine Rückgabe.
7575 */
76- InstanceBase &operator =( InstanceBase const & ) = delete ;
76+ SingletonBase &operator =( SingletonBase const & ) = delete ;
7777
7878 /* *
7979 * @~english
@@ -84,7 +84,7 @@ namespace vx {
8484 * @brief Entfernt die verschobene Zuweisung.
8585 * @return Keine Rückgabe.
8686 */
87- InstanceBase &operator =( InstanceBase && ) = delete ;
87+ SingletonBase &operator =( SingletonBase && ) = delete ;
8888
8989 protected:
9090 /* *
@@ -94,7 +94,7 @@ namespace vx {
9494 * @~german
9595 * @brief Standardkonstruktur für InstanceBase.
9696 */
97- InstanceBase () = default ;
97+ SingletonBase () = default ;
9898
9999 /* *
100100 * @~english
@@ -103,6 +103,6 @@ namespace vx {
103103 * @~german
104104 * @brief Standarddestruktor für InstanceBase.
105105 */
106- virtual ~InstanceBase () = default ;
106+ virtual ~SingletonBase () = default ;
107107 };
108108}
0 commit comments