StyleE.hpp 308 B

1234567891011121314151617
  1. #ifndef STYLEE_HPP
  2. #define STYLEE_HPP
  3. #include "StyleCommon.hpp"
  4. #include <QStylePlugin>
  5. class StyleE : public QStylePlugin
  6. {
  7. Q_OBJECT
  8. // No Json file
  9. Q_PLUGIN_METADATA(IID "org.styles.E")
  10. A_CUSTOM_MACRO(SomeArg, InvalidFileArg, AnotherArg)
  11. public:
  12. QStyle* create(const QString& key);
  13. };
  14. #endif