Commit 789ddd6ed97ae4f6f0e90280e77638e0eca4dee1

Authored by LightBase Consultoria em Software Publico
1 parent 37b0bbac
Exists in master

aX

cacic-daemon/cacicD/cacicthread.cpp 0 → 100644
... ... @@ -0,0 +1,6 @@
  1 +#include "cacicthread.h"
  2 +
  3 +CacicThread::CacicThread(QObject *parent) :
  4 + QThread(parent)
  5 +{
  6 +}
... ...
cacic-daemon/cacicD/cacicthread.h 0 → 100644
... ... @@ -0,0 +1,18 @@
  1 +#ifndef CACICTHREAD_H
  2 +#define CACICTHREAD_H
  3 +
  4 +#include <QThread>
  5 +
  6 +class CacicThread : public QThread
  7 +{
  8 + Q_OBJECT
  9 +public:
  10 + explicit CacicThread(QObject *parent = 0);
  11 +
  12 +signals:
  13 +
  14 +public slots:
  15 +
  16 +};
  17 +
  18 +#endif // CACICTHREAD_H
... ...