-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappPE.hpp
More file actions
36 lines (30 loc) · 1.02 KB
/
Copy pathappPE.hpp
File metadata and controls
36 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/********************************************************
* *
* Project: PythonExercise *
* Author: Michał Walczak *
* Version: "1.2" *
* Last modified: 2016.11.21 *
* Status: initial draft *
* *
********************************************************/
#include <iostream>
#include <vector>
#include <string>
#ifndef APPPE_HPP_
#define APPPE_HPP_
class assesorClass
{
public:
const int maxFileSize = 100;
const int maxWords = 10;
const int minWords = 5;
const int maxWordSize = 15;
const int minWordSize = 5;
assesorClass();
void showInputContent();
int assesContent();
int fileSizeCheck(const std::string filename);
int readFileContent(const std::string filename);
std::vector<std::string> mInput;
};
#endif /* APPPE_HPP_ */