24 lines
300 B
C++
24 lines
300 B
C++
|
/*
|
||
|
* Comperator.hpp
|
||
|
*
|
||
|
* Created: 30.10.2020 19:01:31
|
||
|
* Author: netz
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef COMPERATOR_HPP_
|
||
|
#define COMPERATOR_HPP_
|
||
|
|
||
|
class Comperator {
|
||
|
// Methods
|
||
|
private:
|
||
|
protected:
|
||
|
public:
|
||
|
|
||
|
// Variables
|
||
|
private:
|
||
|
protected:
|
||
|
public:
|
||
|
};
|
||
|
|
||
|
#endif /* COMPERATOR_HPP_ */
|