diff options
Diffstat (limited to 'Swiften/Component/Component.h')
-rw-r--r-- | Swiften/Component/Component.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Swiften/Component/Component.h b/Swiften/Component/Component.h new file mode 100644 index 0000000..a89deb3 --- /dev/null +++ b/Swiften/Component/Component.h @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include "Swiften/Component/CoreComponent.h" + +namespace Swift { + class SoftwareVersionResponder; + + /** + * Provides the core functionality for writing XMPP component software. + * + * Besides connecting to an XMPP server, this class also provides interfaces for + * performing most component tasks on the XMPP network. + */ + class Component : public CoreComponent { + public: + Component(const JID& jid, const String& secret); + ~Component(); + + /** + * Sets the software version of the client. + * + * This will be used to respond to version queries from other entities. + */ + void setSoftwareVersion(const String& name, const String& version); + + private: + SoftwareVersionResponder* softwareVersionResponder; + }; +} |