summaryrefslogtreecommitdiff
path: root/src/Utils/Utils.hpp
blob: a60a64d5028df1d36c0f1eb2175fa1af52751d88 (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