Sensors now work over broadcast pipe
Added Polynomal actor Added Item adding dialog Added Factor Actor
This commit is contained in:
parent
f6aaebafc6
commit
772d21a982
63 changed files with 1450 additions and 225 deletions
|
|
@ -6,11 +6,15 @@
|
|||
class SensorListWidget : public QTableWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
bool showHidden_;
|
||||
|
||||
public:
|
||||
|
||||
SensorListWidget(QWidget *parent = nullptr);
|
||||
SensorListWidget(SensorStore& sensorStore, QWidget* parent = nullptr);
|
||||
SensorListWidget(const bool showHidden = true, QWidget *parent = nullptr);
|
||||
SensorListWidget(SensorStore& sensorStore, const bool showHidden = true, QWidget* parent = nullptr);
|
||||
virtual ~SensorListWidget(){}
|
||||
void setShowHidden(const bool showHidden);
|
||||
|
||||
public slots:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue