Commit 11fe9a0994eb88620d08361fc00167342e888f57
1 parent
12f1c7f9
Exists in
master
Criação da classe cacic_computer.
Showing
2 changed files
with
24 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,18 @@ |
1 | +#ifndef CACIC_COMPUTER_H | |
2 | +#define CACIC_COMPUTER_H | |
3 | + | |
4 | +#include <QObject> | |
5 | + | |
6 | +class CACIC_Computer : public QObject | |
7 | +{ | |
8 | + Q_OBJECT | |
9 | +public: | |
10 | + explicit CACIC_Computer(QObject *parent = 0); | |
11 | + | |
12 | +signals: | |
13 | + | |
14 | +public slots: | |
15 | + | |
16 | +}; | |
17 | + | |
18 | +#endif // CACIC_COMPUTER_H | ... | ... |