Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. #ifndef PLUGINS_AZOTH_PLUGINS_ACETAMIDE_IRCADDSERVERDIALOG_H
  2. #define PLUGINS_AZOTH_PLUGINS_ACETAMIDE_IRCADDSERVERDIALOG_H
  3.  
  4. #include <QDialog>
  5. #include "ui_ircaddserverdialog.h"
  6.  
  7. namespace Leechcraft
  8. {
  9. namespace Azoth
  10. {
  11. namespace Acetamide
  12. {
  13. class IrcAddServerDialog : public QDialog
  14. {
  15. Q_OBJECT
  16.  
  17. Ui::AddServerDialog_ Ui_;
  18.  
  19. public:
  20. IrcAddServerDialog (QWidget* = 0);
  21.  
  22. QString GetServer () const;
  23. void SetServer (const QString&);
  24. int GetPort () const;
  25. void SetPort (int);
  26. QString GetPassword () const;
  27. void SetPassword (const QString&);
  28. };
  29. };
  30. };
  31. };
  32. #endif // PLUGINS_AZOTH_PLUGINS_ACETAMIDE_IRCADDSERVERDIALOG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement