13 lines
218 B
C++
13 lines
218 B
C++
#ifndef GENERALUTILITY_GENERALUTILITY_H
|
|
#define GENERALUTILITY_GENERALUTILITY_H
|
|
|
|
class GeneralUtility {
|
|
public:
|
|
|
|
private:
|
|
// No instanciation! >:(
|
|
GeneralUtility();
|
|
};
|
|
|
|
#endif //GENERALUTILITY_GENERALUTILITY_H
|