Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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