Rueba  1.0
Refectory Access System
AcessoApp.h
1 /*
2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6 
7 /*
8  * File: AcessoApp.h
9  * Author: mvalente
10  *
11  * Created on June 30, 2017, 5:24 PM
12  */
13 
14 #ifndef ACESSOAPP_H
15 #define ACESSOAPP_H
16 #include <string>
17 #include "ServerSocket.h"
18 #include "SocketException.h"
19 #include <bits/stdc++.h>
20 #include <cstdlib>
21 #include "RuManager.h"
22 
23 using namespace std;
24 
25 class AcessoApp {
26 
27  RuManager *manager;
28 
29 public:
30 
31  AcessoApp();
32  AcessoApp(RuManager * anager);
33  virtual ~AcessoApp();
34  string generateCaptcha(int n);
35  string removeCreditos(string creditos);
36  void liberaEntrada();
37  void rodar();
38 
39 private:
40 
41 };
42 
43 #endif /* ACESSOAPP_H */
44 
Definition: RuManager.h:21
Definition: AcessoApp.h:25