13 lines
169 B
C++
13 lines
169 B
C++
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
class Utils {
|
|
public:
|
|
static optional<int> charStringToInt(string charString);
|
|
};
|
|
|
|
#endif |