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.
konversation/konversation/src/serversettings.h

53 lines
1.4 KiB

/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
/*
Copyright (C) 2004 Peter Simonsson <psn@linux.se>
Copyright (C) 2008 Eike Hein <hein@kde.org>
*/
#ifndef KONVERSATIONSERVERSETTINGS_H
#define KONVERSATIONSERVERSETTINGS_H
#include <tqstring.h>
namespace Konversation
{
class ServerSettings
{
public:
ServerSettings();
ServerSettings(const ServerSettings& settings);
explicit ServerSettings(const TQString& host);
~ServerSettings();
void setHost(const TQString& host);
TQString host() const { return m_host; }
void setPort(int port) { m_port = port; }
int port() const { return m_port;}
void setPassword(const TQString& password);
TQString password() const { return m_password; }
void setSSLEnabled(bool enabled) { m_SSLEnabled = enabled; }
bool SSLEnabled() const { return m_SSLEnabled; }
bool operator== (const ServerSettings& settings) const;
private:
TQString m_host;
int m_port;
TQString m_password;
bool m_SSLEnabled;
};
}
#endif