APservice/lib_template.h

29 lines
441 B
C
Raw Permalink Normal View History

2023-11-14 09:32:56 +01:00
#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