26 lines
313 B
C++
26 lines
313 B
C++
|
#include "lib_template.h"
|
||
|
|
||
|
|
||
|
|
||
|
T_lib_template::T_lib_template(hwinf *HWaccess, QWidget *parent) : QWidget(parent)
|
||
|
{
|
||
|
this->HWaccess = HWaccess;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
T_lib_template::~T_lib_template()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
bool T_lib_template::working(void)
|
||
|
{
|
||
|
// is called cyclic
|
||
|
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
|