Changeset 6026 for pjproject/trunk/pjsip/include/pjsua2/presence.hpp
- Timestamp:
- Jun 12, 2019 6:00:35 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/presence.hpp
r5969 r6026 101 101 * @param node Container to read values from. 102 102 */ 103 virtual void readObject(const ContainerNode &node) throw(Error);103 virtual void readObject(const ContainerNode &node) PJSUA2_THROW(Error); 104 104 105 105 /** … … 108 108 * @param node Container to write values to. 109 109 */ 110 virtual void writeObject(ContainerNode &node) const throw(Error);110 virtual void writeObject(ContainerNode &node) const PJSUA2_THROW(Error); 111 111 }; 112 112 … … 233 233 * @param cfg The buddy config. 234 234 */ 235 void create(Account &acc, const BuddyConfig &cfg) throw(Error);235 void create(Account &acc, const BuddyConfig &cfg) PJSUA2_THROW(Error); 236 236 237 237 /** … … 247 247 * @return Buddy info. 248 248 */ 249 BuddyInfo getInfo() const throw(Error);249 BuddyInfo getInfo() const PJSUA2_THROW(Error); 250 250 251 251 /** … … 257 257 * subscription. 258 258 */ 259 void subscribePresence(bool subscribe) throw(Error);259 void subscribePresence(bool subscribe) PJSUA2_THROW(Error); 260 260 261 261 /** … … 275 275 * \a onBuddyState() callback. 276 276 */ 277 void updatePresence(void) throw(Error);277 void updatePresence(void) PJSUA2_THROW(Error); 278 278 279 279 /** … … 283 283 * @param prm Sending instant message parameter. 284 284 */ 285 void sendInstantMessage(const SendInstantMessageParam &prm) throw(Error); 285 void sendInstantMessage(const SendInstantMessageParam &prm) 286 PJSUA2_THROW(Error); 286 287 287 288 /** … … 291 292 */ 292 293 void sendTypingIndication(const SendTypingIndicationParam &prm) 293 throw(Error);294 PJSUA2_THROW(Error); 294 295 295 296 public:
Note: See TracChangeset
for help on using the changeset viewer.