Rueba  1.0
Refectory Access System
RuManager.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: RuManager.h
9  * Author: mvalente
10  *
11  * Created on June 6, 2017, 2:30 PM
12  */
13 
14 #ifndef RUMANAGER_H
15 #define RUMANAGER_H
16 
17 #include "Node.h"
18 #include "BinaryTree.h"
19 #include <string>
20 #include "conexaoServidor.h"
21 class RuManager {
22  int numUsers;
23  BinaryTree dados;
24  int matricula;
25  conexaoServidor cs;
26 
27 
28 public:
29  RuManager();
30  virtual ~RuManager();
31  void entrouAluno(int novaMatricula);
32  void saiuAluno(int novaMatricula);
33  int getNumUsers();
34  bool estaNoRu(int matricula);
35 
36 
37 };
38 
39 #endif /* RUMANAGER_H */
40 
void saiuAluno(int novaMatricula)
Definition: RuManager.cpp:45
Definition: RuManager.h:21
Definition: conexaoServidor.h:13
void entrouAluno(int novaMatricula)
Definition: RuManager.cpp:33
bool estaNoRu(int matricula)
Definition: RuManager.cpp:69
Definition: BinaryTree.h:19
int getNumUsers()
Definition: RuManager.cpp:56
RuManager()
Definition: RuManager.cpp:17