summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-10-24 16:28:49 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-10-24 16:32:07 (GMT)
commit3dadad3249bee2c41b610c7148ddc41ea6b351ca (patch)
treec051d71d53de3bad12be53e8e7ec79e55a3c889f
parenta8a37c1d43412c410c33eba18c5ab46b0cf7b0d1 (diff)
downloadswift-3dadad3249bee2c41b610c7148ddc41ea6b351ca.zip
swift-3dadad3249bee2c41b610c7148ddc41ea6b351ca.tar.bz2
Added excludes to Doxygen.
-rw-r--r--Documentation/API/Doxyfile2
-rw-r--r--Swiften/Presence/PresenceOracle.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/API/Doxyfile b/Documentation/API/Doxyfile
index 5e6c79a..1bcc69b 100644
--- a/Documentation/API/Doxyfile
+++ b/Documentation/API/Doxyfile
@@ -89,7 +89,7 @@ INPUT = Swiften
INPUT_ENCODING = UTF-8
FILE_PATTERNS = *.h *.cpp
RECURSIVE = YES
-EXCLUDE =
+EXCLUDE = Swiften/Parser/PayloadParsers Swiften/Serializer/PayloadSerializers
EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = */3rdParty/* */UnitTest/* */QA/*
EXCLUDE_SYMBOLS =
diff --git a/Swiften/Presence/PresenceOracle.h b/Swiften/Presence/PresenceOracle.h
index b0d1e15..f30d05d 100644
--- a/Swiften/Presence/PresenceOracle.h
+++ b/Swiften/Presence/PresenceOracle.h
@@ -24,12 +24,12 @@ class StanzaChannel;
Presence::ref getHighestPriorityPresence(const JID& bareJID) const;
public:
- boost::signal<void (boost::shared_ptr<Presence>)> onPresenceChange;
+ boost::signal<void (Presence::ref)> onPresenceChange;
boost::signal<void (const JID&, const String&)> onPresenceSubscriptionRequest;
boost::signal<void (const JID&, const String&)> onPresenceSubscriptionRevoked;
private:
- void handleIncomingPresence(boost::shared_ptr<Presence> presence);
+ void handleIncomingPresence(Presence::ref presence);
void handleStanzaChannelAvailableChanged(bool);
private: