diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-07-24 06:30:33 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-07-24 07:16:35 (GMT) |
commit | 42e410208ca9aa8af5f27c85a6b33af488a0b6cc (patch) | |
tree | 42c7793effd1225ebe6617c7405cf64635530a53 /Swiften/LinkLocal/DNSSDPublishQuery.h | |
parent | 714e831bb9ea2b14cba3c2696c12e2e13b1bb9d7 (diff) | |
download | swift-contrib-42e410208ca9aa8af5f27c85a6b33af488a0b6cc.zip swift-contrib-42e410208ca9aa8af5f27c85a6b33af488a0b6cc.tar.bz2 |
More DNSSD framework.
Diffstat (limited to 'Swiften/LinkLocal/DNSSDPublishQuery.h')
-rw-r--r-- | Swiften/LinkLocal/DNSSDPublishQuery.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Swiften/LinkLocal/DNSSDPublishQuery.h b/Swiften/LinkLocal/DNSSDPublishQuery.h new file mode 100644 index 0000000..48c86dc --- /dev/null +++ b/Swiften/LinkLocal/DNSSDPublishQuery.h @@ -0,0 +1,17 @@ +#pragma once + +#include <boost/signal.hpp> +#include <boost/optional.hpp> + +#include "Swiften/LinkLocal/LinkLocalServiceID.h" + +namespace Swift { + class DNSSDPublishQuery { + public: + virtual ~DNSSDPublishQuery(); + + virtual void publish() = 0; + + boost::signal<void (boost::optional<LinkLocalServiceID>)> onPublishFinished; + }; +} |