Initial commit

This commit is contained in:
Leonetienne
2022-02-27 13:48:21 +01:00
commit 2958c2c72b
5 changed files with 66 additions and 0 deletions

8
Src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.16)
project(GeneralUtility)
set(CMAKE_CXX_STANDARD 17)
add_library(GeneralUtility
GeneralUtility.cpp
)

2
Src/GeneralUtility.cpp Normal file
View File

@@ -0,0 +1,2 @@
#include "GeneralUtility.h"

12
Src/GeneralUtility.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef GENERALUTILITY_GENERALUTILITY_H
#define GENERALUTILITY_GENERALUTILITY_H
class GeneralUtility {
public:
private:
// No instanciation! >:(
GeneralUtility();
};
#endif //GENERALUTILITY_GENERALUTILITY_H