astyle.h 246 B

1234567891011121314
  1. #ifndef ASTYLE_H
  2. #define ASTYLE_H
  3. #include <QString>
  4. #include <QFile>
  5. class AStyle
  6. {
  7. public:
  8. static void setup();
  9. static void setStyle(const QString& style);
  10. static void setStyleSheet(const QString& qss_file);
  11. };
  12. #endif // ASTYLE_H