nesca/piestat.h

22 lines
264 B
C
Raw Permalink Normal View History

#pragma once
2015-02-24 14:00:19 +00:00
#ifndef PIESTAT_H
#define PIESTAT_H
#include "nesca_3.h"
class PieStat : public QThread
{
Q_OBJECT
public:
public: signals: void sUpdatePie();
public:
void doEmitUpdatePie();
protected:
void run();
};
extern PieStat *psTh;
#endif // PIESTAT_H