Skip to content

Instantly share code, notes, and snippets.

@FrostDelta123
Created May 25, 2020 17:47
Show Gist options
  • Save FrostDelta123/dd1ffaa6ab3e70f4b7ea7bb0d9e03942 to your computer and use it in GitHub Desktop.
Save FrostDelta123/dd1ffaa6ab3e70f4b7ea7bb0d9e03942 to your computer and use it in GitHub Desktop.
#ifndef KURSACHNEW_UTILS_H
#define KURSACHNEW_UTILS_H
#include <string>
#include "FileUtil.h"
#include "Date.h"
using namespace std;
class Utils {
public:
static bool isValid(string &);
static Date parse(string);
static void open();
static void checkFile();
static int validateInt(int, int);
};
#endif //KURSACHNEW_UTILS_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment