diff options
Diffstat (limited to 'Source/QtDialog/AddCacheEntry.h')
-rw-r--r-- | Source/QtDialog/AddCacheEntry.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Source/QtDialog/AddCacheEntry.h b/Source/QtDialog/AddCacheEntry.h new file mode 100644 index 0000000..74e4705 --- /dev/null +++ b/Source/QtDialog/AddCacheEntry.h @@ -0,0 +1,24 @@ + +#ifndef AddCacheEntry_h +#define AddCacheEntry_h + +#include <QWidget> +#include <QCheckBox> + +#include "QCMake.h" +#include "ui_AddCacheEntry.h" + +class AddCacheEntry : public QWidget, public Ui::AddCacheEntry +{ + Q_OBJECT +public: + AddCacheEntry(QWidget* p); + + QString name() const; + QVariant value() const; + QString description() const; + QCMakeCacheProperty::PropertyType type() const; +}; + +#endif + |