Commit 11fe9a0994eb88620d08361fc00167342e888f57

Authored by Eric Menezes Noronha
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
src/cacic_computer.cpp 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +#include "cacic_computer.h"
  2 +
  3 +CACIC_Computer::CACIC_Computer(QObject *parent) :
  4 + QObject(parent)
  5 +{
  6 +}
... ...
src/cacic_computer.h 0 → 100644
... ... @@ -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
... ...