AddCacheEntry.h 965 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef AddCacheEntry_h
  11. #define AddCacheEntry_h
  12. #include <QWidget>
  13. #include <QCheckBox>
  14. #include "QCMake.h"
  15. #include "ui_AddCacheEntry.h"
  16. class AddCacheEntry : public QWidget, public Ui::AddCacheEntry
  17. {
  18. Q_OBJECT
  19. public:
  20. AddCacheEntry(QWidget* p);
  21. QString name() const;
  22. QVariant value() const;
  23. QString description() const;
  24. QCMakeProperty::PropertyType type() const;
  25. };
  26. #endif