diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-07-21 13:30:09 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-07-21 13:32:06 (GMT) |
commit | 358f741f45ac92d07b923afd51aeb39704277374 (patch) | |
tree | 7dd2eb80cab3d76771ffb22f5d8c7bf4aae77887 /Slimber/Server.h | |
parent | e6e5c2a9935d5970c9ed570f86cfec06f0ab75fd (diff) | |
download | swift-358f741f45ac92d07b923afd51aeb39704277374.zip swift-358f741f45ac92d07b923afd51aeb39704277374.tar.bz2 |
Add VCardCollection.
Diffstat (limited to 'Slimber/Server.h')
-rw-r--r-- | Slimber/Server.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Slimber/Server.h b/Slimber/Server.h index d8b6c6c..b85aec8 100644 --- a/Slimber/Server.h +++ b/Slimber/Server.h @@ -22,9 +22,11 @@ #include "Swiften/Serializer/PayloadSerializers/FullPayloadSerializerCollection.h" namespace Swift { + class VCardCollection; + class Server { public: - Server(int clientConnectionPort, int linkLocalConnectionPort, boost::shared_ptr<LinkLocalRoster>, boost::shared_ptr<DNSSDService> dnsSDService); + Server(int clientConnectionPort, int linkLocalConnectionPort, boost::shared_ptr<LinkLocalRoster>, boost::shared_ptr<DNSSDService> dnsSDService, VCardCollection* vCardCollection); boost::signal<void (bool)> onSelfConnected; @@ -66,6 +68,7 @@ namespace Swift { int linkLocalConnectionPort_; boost::shared_ptr<LinkLocalRoster> linkLocalRoster_; boost::shared_ptr<DNSSDService> dnsSDService_; + VCardCollection* vCardCollection_; boost::shared_ptr<BoostConnectionServer> serverFromClientConnectionServer_; boost::shared_ptr<ServerFromClientSession> serverFromClientSession_; boost::shared_ptr<BoostConnectionServer> serverFromNetworkConnectionServer_; |