Skip to content

Instantly share code, notes, and snippets.

@FrostDelta123
Last active May 25, 2020 17:44
Show Gist options
  • Save FrostDelta123/993643b8851949e1708d346d7de5bf4a to your computer and use it in GitHub Desktop.
Save FrostDelta123/993643b8851949e1708d346d7de5bf4a to your computer and use it in GitHub Desktop.
//
// Created by Delta on 18.05.2020.
//
#ifndef KURSACHNEW_FILEUTIL_H
#define KURSACHNEW_FILEUTIL_H
class FileUtil {
public:
static int getStudentCount();
static bool checkFile();
static void printAll();
static bool isEmpty();
static void enterStudent();
static bool validateStudent(const char[]);
static void studentAction(const char[], int);
static void recreateFileWithDelete(const char[]);
static void recreateFileWithEdit(const char[]);
static void allStudentMarks(const char[]);
static void printMarks(struct Student);
static void sorting(int);
static bool calculate(int, struct Student);
static bool genderCheck(int, struct Student);
};
#endif //KURSACHNEW_FILEUTIL_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment