summaryrefslogtreecommitdiff
path: root/src/Utils/Utils.hpp
blob: 7df9e3de14f556c3ed41b3bb37efc7a101b85a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <string>

#ifndef UTILS_HPP

class Utils{
    public:
    int catchInputInt(int input);
    int catchReturn(int renum);
};

#endif