Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

rdpoptionshelper.h 419B

12345678910111213141516171819202122
  1. #ifndef RDPOPTIONSHELPER_H
  2. #define RDPOPTIONSHELPER_H
  3. #include "rdpoptions.h"
  4. class RdpOptionsHelper
  5. {
  6. public:
  7. static void save(const RdpOptions& opt);
  8. static RdpOptions load(QString group);
  9. static void remove(const RdpOptions& opt);
  10. static QList<RdpOptions> loadAll();
  11. static QString getDefaultName();
  12. static QString getGroupName(const RdpOptions& opt);
  13. };
  14. #endif // RDPOPTIONSHELPER_H