Rueba  1.0
Refectory Access System
AcessoCard.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: AcessoCard.h
9  * Author: mvalente
10  *
11  * Created on June 30, 2017, 5:24 PM
12  */
13 
14 #ifndef ACESSOCARD_H
15 #define ACESSOCARD_H
16 #include <string>
17 #include <cstdlib>
18 #include "RuManager.h"
19 #include <iostream>
20 #include <unistd.h>
21 #include <leitorCarteirinha.h>
22 
23 using namespace std;
24 
25 class AcessoCard {
26 
27  RuManager *manager;
28 
29 public:
30 
31  AcessoCard();
32  AcessoCard(RuManager * anager);
33  virtual ~AcessoCard();
34  void liberaEntrada();
35  void rodar();
36 
37 private:
38 
39 };
40 
41 #endif /* ACESSOCARD_H */
42 
Definition: RuManager.h:21
Definition: AcessoCard.h:25