Changeset 6026 for pjproject/trunk/pjsip/include/pjsua2/call.hpp
- Timestamp:
- Jun 12, 2019 6:00:35 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/call.hpp
r5972 r6026 1210 1210 * @return Call info. 1211 1211 */ 1212 CallInfo getInfo() const throw(Error);1212 CallInfo getInfo() const PJSUA2_THROW(Error); 1213 1213 1214 1214 /** … … 1264 1264 * @return The audio media. 1265 1265 */ 1266 AudioMedia getAudioMedia(int med_idx) const throw(Error);1266 AudioMedia getAudioMedia(int med_idx) const PJSUA2_THROW(Error); 1267 1267 1268 1268 /** … … 1277 1277 * @return The video media. 1278 1278 */ 1279 VideoMedia getEncodingVideoMedia(int med_idx) const throw(Error);1279 VideoMedia getEncodingVideoMedia(int med_idx) const PJSUA2_THROW(Error); 1280 1280 1281 1281 /** … … 1290 1290 * @return The video media. 1291 1291 */ 1292 VideoMedia getDecodingVideoMedia(int med_idx) const throw(Error);1292 VideoMedia getDecodingVideoMedia(int med_idx) const PJSUA2_THROW(Error); 1293 1293 1294 1294 /** … … 1349 1349 * @see Endpoint::natGetType(), natTypeInSdp 1350 1350 */ 1351 pj_stun_nat_type getRemNatType() throw(Error);1351 pj_stun_nat_type getRemNatType() PJSUA2_THROW(Error); 1352 1352 1353 1353 /** … … 1360 1360 * request. 1361 1361 */ 1362 void makeCall(const string &dst_uri, const CallOpParam &prm) throw(Error); 1362 void makeCall(const string &dst_uri, const CallOpParam &prm) 1363 PJSUA2_THROW(Error); 1363 1364 1364 1365 /** … … 1384 1385 * INVITE request. 1385 1386 */ 1386 void answer(const CallOpParam &prm) throw(Error);1387 void answer(const CallOpParam &prm) PJSUA2_THROW(Error); 1387 1388 1388 1389 /** … … 1404 1405 * request/response message. 1405 1406 */ 1406 void hangup(const CallOpParam &prm) throw(Error);1407 void hangup(const CallOpParam &prm) PJSUA2_THROW(Error); 1407 1408 1408 1409 /** … … 1418 1419 * the request. 1419 1420 */ 1420 void setHold(const CallOpParam &prm) throw(Error);1421 void setHold(const CallOpParam &prm) PJSUA2_THROW(Error); 1421 1422 1422 1423 /** … … 1433 1434 * the request. 1434 1435 */ 1435 void reinvite(const CallOpParam &prm) throw(Error);1436 void reinvite(const CallOpParam &prm) PJSUA2_THROW(Error); 1436 1437 1437 1438 /** … … 1443 1444 * the request. 1444 1445 */ 1445 void update(const CallOpParam &prm) throw(Error);1446 void update(const CallOpParam &prm) PJSUA2_THROW(Error); 1446 1447 1447 1448 /** … … 1460 1461 * the request. 1461 1462 */ 1462 void xfer(const string &dest, const CallOpParam &prm) throw(Error);1463 void xfer(const string &dest, const CallOpParam &prm) PJSUA2_THROW(Error); 1463 1464 1464 1465 /** … … 1478 1479 */ 1479 1480 void xferReplaces(const Call& dest_call, 1480 const CallOpParam &prm) throw(Error);1481 const CallOpParam &prm) PJSUA2_THROW(Error); 1481 1482 1482 1483 /** … … 1502 1503 * not accepted here. 1503 1504 */ 1504 void processRedirect(pjsip_redirect_op cmd) throw(Error);1505 void processRedirect(pjsip_redirect_op cmd) PJSUA2_THROW(Error); 1505 1506 1506 1507 /** … … 1509 1510 * @param digits DTMF string digits to be sent. 1510 1511 */ 1511 void dialDtmf(const string &digits) throw(Error);1512 void dialDtmf(const string &digits) PJSUA2_THROW(Error); 1512 1513 1513 1514 /** … … 1516 1517 * @param param The send DTMF parameter. 1517 1518 */ 1518 void sendDtmf(const CallSendDtmfParam ¶m) throw(Error);1519 void sendDtmf(const CallSendDtmfParam ¶m) PJSUA2_THROW(Error); 1519 1520 1520 1521 /** … … 1530 1531 * the IM callback is called. 1531 1532 */ 1532 void sendInstantMessage(const SendInstantMessageParam& prm) throw(Error); 1533 void sendInstantMessage(const SendInstantMessageParam& prm) 1534 PJSUA2_THROW(Error); 1533 1535 1534 1536 /** … … 1541 1543 */ 1542 1544 void sendTypingIndication(const SendTypingIndicationParam &prm) 1543 throw(Error);1545 PJSUA2_THROW(Error); 1544 1546 1545 1547 /** … … 1553 1555 * included in outgoing request. 1554 1556 */ 1555 void sendRequest(const CallSendRequestParam &prm) throw(Error);1557 void sendRequest(const CallSendRequestParam &prm) PJSUA2_THROW(Error); 1556 1558 1557 1559 /** … … 1563 1565 * @return Call dump and media statistics string. 1564 1566 */ 1565 string dump(bool with_media, const string indent) throw(Error);1567 string dump(bool with_media, const string indent) PJSUA2_THROW(Error); 1566 1568 1567 1569 /** … … 1601 1603 */ 1602 1604 void vidSetStream(pjsua_call_vid_strm_op op, 1603 const CallVidSetStreamParam ¶m) throw(Error);1605 const CallVidSetStreamParam ¶m) PJSUA2_THROW(Error); 1604 1606 1605 1607 /** … … 1610 1612 * @return The stream info. 1611 1613 */ 1612 StreamInfo getStreamInfo(unsigned med_idx) const throw(Error);1614 StreamInfo getStreamInfo(unsigned med_idx) const PJSUA2_THROW(Error); 1613 1615 1614 1616 /** … … 1619 1621 * @return The stream statistic. 1620 1622 */ 1621 StreamStat getStreamStat(unsigned med_idx) const throw(Error);1623 StreamStat getStreamStat(unsigned med_idx) const PJSUA2_THROW(Error); 1622 1624 1623 1625 /** … … 1628 1630 * @return The transport info. 1629 1631 */ 1630 MediaTransportInfo getMedTransportInfo(unsigned med_idx) const throw(Error); 1632 MediaTransportInfo getMedTransportInfo(unsigned med_idx) const 1633 PJSUA2_THROW(Error); 1631 1634 1632 1635 /**
Note: See TracChangeset
for help on using the changeset viewer.