29 lines
441 B
C
29 lines
441 B
C
|
#ifndef LIB_TEMPLATE_H
|
||
|
#define LIB_TEMPLATE_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QTimer>
|
||
|
#include <QDebug>
|
||
|
#include <QWidget>
|
||
|
#include "tslib.h"
|
||
|
#include "stepList.h"
|
||
|
#include "plugin.h"
|
||
|
|
||
|
|
||
|
|
||
|
class T_lib_template : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
hwinf *HWaccess;
|
||
|
|
||
|
|
||
|
public:
|
||
|
explicit T_lib_template(hwinf *HWaccess = nullptr, QWidget *parent = nullptr);
|
||
|
|
||
|
bool working (void);
|
||
|
~T_lib_template();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|