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 314B

123456789101112131415161718
  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 QList<RdpOptions> loadAll();
  10. static QString getDefaultName();
  11. };
  12. #endif // RDPOPTIONSHELPER_H