Forbid instanciation of static classes

This commit is contained in:
Leonetienne
2022-05-31 14:28:17 +02:00
parent ff2355f154
commit 7c764c3a11
6 changed files with 20 additions and 2 deletions
+3
View File
@@ -49,6 +49,9 @@ class DataFormatter {
const std::vector<std::string>& customSet,
const std::string& seperator = ""
);
// No instanciation! >:(
DataFormatter() {};
};
#endif