Skip to content

Commit 0b88469

Browse files
committed
Rename InstanceBase to SingletonBase
1 parent fc058b3 commit 0b88469

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

source/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ add_library(${PROJECT_NAME}
4949
Timing.cpp
5050
Timing.h
5151
templates/CSVWriter.h
52-
templates/InstanceBase.h
52+
templates/SingletonBase.h
5353
templates/Timer.h
5454
${${PROJECT_NAME}_os_src}
5555
)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)