Changeset 6026 for pjproject/trunk/pjsip/include/pjsua2/siptypes.hpp
- Timestamp:
- Jun 12, 2019 6:00:35 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/siptypes.hpp
r5821 r6026 105 105 * @param node Container to read values from. 106 106 */ 107 virtual void readObject(const ContainerNode &node) throw(Error);107 virtual void readObject(const ContainerNode &node) PJSUA2_THROW(Error); 108 108 109 109 /** … … 112 112 * @param node Container to write values to. 113 113 */ 114 virtual void writeObject(ContainerNode &node) const throw(Error);114 virtual void writeObject(ContainerNode &node) const PJSUA2_THROW(Error); 115 115 }; 116 116 … … 288 288 * @param node Container to read values from. 289 289 */ 290 virtual void readObject(const ContainerNode &node) throw(Error);290 virtual void readObject(const ContainerNode &node) PJSUA2_THROW(Error); 291 291 292 292 /** … … 295 295 * @param node Container to write values to. 296 296 */ 297 virtual void writeObject(ContainerNode &node) const throw(Error);297 virtual void writeObject(ContainerNode &node) const PJSUA2_THROW(Error); 298 298 }; 299 299 … … 385 385 * @param node Container to read values from. 386 386 */ 387 virtual void readObject(const ContainerNode &node) throw(Error);387 virtual void readObject(const ContainerNode &node) PJSUA2_THROW(Error); 388 388 389 389 /** … … 392 392 * @param node Container to write values to. 393 393 */ 394 virtual void writeObject(ContainerNode &node) const throw(Error);394 virtual void writeObject(ContainerNode &node) const PJSUA2_THROW(Error); 395 395 }; 396 396 … … 745 745 * Initiaize from PJSIP header. 746 746 */ 747 void fromPj(const pjsip_hdr *) throw(Error);747 void fromPj(const pjsip_hdr *) PJSUA2_THROW(Error); 748 748 749 749 /** … … 785 785 * Initiaize from PJSIP's pjsip_multipart_part. 786 786 */ 787 void fromPj(const pjsip_multipart_part &prm) throw(Error);787 void fromPj(const pjsip_multipart_part &prm) PJSUA2_THROW(Error); 788 788 789 789 /** … … 860 860 * Initiaize from PJSUA's pjsua_msg_data. 861 861 */ 862 void fromPj(const pjsua_msg_data &prm) throw(Error);862 void fromPj(const pjsua_msg_data &prm) PJSUA2_THROW(Error); 863 863 864 864 /** … … 933 933 void readIntVector( ContainerNode &node, 934 934 const string &array_name, 935 IntVector &v) throw(Error);935 IntVector &v) PJSUA2_THROW(Error); 936 936 void writeIntVector(ContainerNode &node, 937 937 const string &array_name, 938 const IntVector &v) throw(Error);938 const IntVector &v) PJSUA2_THROW(Error); 939 939 void readQosParams( ContainerNode &node, 940 pj_qos_params &qos) throw(Error);940 pj_qos_params &qos) PJSUA2_THROW(Error); 941 941 void writeQosParams( ContainerNode &node, 942 const pj_qos_params &qos) throw(Error);942 const pj_qos_params &qos) PJSUA2_THROW(Error); 943 943 void readSipHeaders( const ContainerNode &node, 944 944 const string &array_name, 945 SipHeaderVector &headers) throw(Error);945 SipHeaderVector &headers) PJSUA2_THROW(Error); 946 946 void writeSipHeaders(ContainerNode &node, 947 947 const string &array_name, 948 const SipHeaderVector &headers) throw(Error);948 const SipHeaderVector &headers) PJSUA2_THROW(Error); 949 949 //! @endcond 950 950 #endif // SWIG
Note: See TracChangeset
for help on using the changeset viewer.