#ifndef BACLIMITENABLE_H #define BACLIMITENABLE_H #include <map> #include <QWidget> #include <QString> #include <QGridLayout> #include "BitString.h" class BacLimitEnable : public BitString { Q_OBJECT public: BacLimitEnable(QWidget *parent, int db_id, int PropId, QString label = QString(), QGridLayout *layout = NULL, int row = 0, int col = 0); BacLimitEnable(QWidget *parent, int db_id, int PropId, int value, QString label = QString(), QGridLayout *layout = NULL, int row = 0, int col = 0); protected: void addChecks(); }; #endif