You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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