Ignore:
Timestamp:
Jun 12, 2019 6:00:35 AM (5 years ago)
Author:
nanang
Message:

Misc (re #2147): Fixed compile warnings "dynamic exception specifications are deprecated in C++11".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua2/call.hpp

    r5972 r6026  
    12101210     * @return              Call info. 
    12111211     */ 
    1212     CallInfo getInfo() const throw(Error); 
     1212    CallInfo getInfo() const PJSUA2_THROW(Error); 
    12131213     
    12141214    /** 
     
    12641264     * @return              The audio media. 
    12651265     */ 
    1266     AudioMedia getAudioMedia(int med_idx) const throw(Error); 
     1266    AudioMedia getAudioMedia(int med_idx) const PJSUA2_THROW(Error); 
    12671267 
    12681268    /** 
     
    12771277     * @return              The video media. 
    12781278     */ 
    1279     VideoMedia getEncodingVideoMedia(int med_idx) const throw(Error); 
     1279    VideoMedia getEncodingVideoMedia(int med_idx) const PJSUA2_THROW(Error); 
    12801280 
    12811281    /** 
     
    12901290     * @return              The video media. 
    12911291     */ 
    1292     VideoMedia getDecodingVideoMedia(int med_idx) const throw(Error); 
     1292    VideoMedia getDecodingVideoMedia(int med_idx) const PJSUA2_THROW(Error); 
    12931293 
    12941294    /** 
     
    13491349     * @see Endpoint::natGetType(), natTypeInSdp 
    13501350     */ 
    1351     pj_stun_nat_type getRemNatType() throw(Error); 
     1351    pj_stun_nat_type getRemNatType() PJSUA2_THROW(Error); 
    13521352 
    13531353    /** 
     
    13601360     *                      request. 
    13611361     */ 
    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); 
    13631364 
    13641365    /** 
     
    13841385     *                      INVITE request. 
    13851386     */ 
    1386     void answer(const CallOpParam &prm) throw(Error); 
     1387    void answer(const CallOpParam &prm) PJSUA2_THROW(Error); 
    13871388     
    13881389    /** 
     
    14041405     *                      request/response message. 
    14051406     */ 
    1406     void hangup(const CallOpParam &prm) throw(Error); 
     1407    void hangup(const CallOpParam &prm) PJSUA2_THROW(Error); 
    14071408     
    14081409    /** 
     
    14181419     *                      the request. 
    14191420     */ 
    1420     void setHold(const CallOpParam &prm) throw(Error); 
     1421    void setHold(const CallOpParam &prm) PJSUA2_THROW(Error); 
    14211422     
    14221423    /** 
     
    14331434     *                      the request. 
    14341435     */ 
    1435     void reinvite(const CallOpParam &prm) throw(Error); 
     1436    void reinvite(const CallOpParam &prm) PJSUA2_THROW(Error); 
    14361437     
    14371438    /** 
     
    14431444     *                      the request. 
    14441445     */ 
    1445     void update(const CallOpParam &prm) throw(Error); 
     1446    void update(const CallOpParam &prm) PJSUA2_THROW(Error); 
    14461447     
    14471448    /** 
     
    14601461     *                      the request. 
    14611462     */ 
    1462     void xfer(const string &dest, const CallOpParam &prm) throw(Error); 
     1463    void xfer(const string &dest, const CallOpParam &prm) PJSUA2_THROW(Error); 
    14631464 
    14641465    /** 
     
    14781479     */ 
    14791480    void xferReplaces(const Call& dest_call, 
    1480                       const CallOpParam &prm) throw(Error); 
     1481                      const CallOpParam &prm) PJSUA2_THROW(Error); 
    14811482     
    14821483    /** 
     
    15021503     *                      not accepted here. 
    15031504     */ 
    1504     void processRedirect(pjsip_redirect_op cmd) throw(Error); 
     1505    void processRedirect(pjsip_redirect_op cmd) PJSUA2_THROW(Error); 
    15051506 
    15061507    /** 
     
    15091510     * @param digits        DTMF string digits to be sent. 
    15101511     */ 
    1511     void dialDtmf(const string &digits) throw(Error); 
     1512    void dialDtmf(const string &digits) PJSUA2_THROW(Error); 
    15121513 
    15131514    /** 
     
    15161517     * @param param     The send DTMF parameter. 
    15171518     */ 
    1518     void sendDtmf(const CallSendDtmfParam &param) throw (Error); 
     1519    void sendDtmf(const CallSendDtmfParam &param) PJSUA2_THROW(Error); 
    15191520     
    15201521    /** 
     
    15301531     *                      the IM callback is called. 
    15311532     */ 
    1532     void sendInstantMessage(const SendInstantMessageParam& prm) throw(Error); 
     1533    void sendInstantMessage(const SendInstantMessageParam& prm) 
     1534                            PJSUA2_THROW(Error); 
    15331535     
    15341536    /** 
     
    15411543     */ 
    15421544    void sendTypingIndication(const SendTypingIndicationParam &prm) 
    1543          throw(Error); 
     1545         PJSUA2_THROW(Error); 
    15441546     
    15451547    /** 
     
    15531555     *                      included in outgoing request. 
    15541556     */ 
    1555     void sendRequest(const CallSendRequestParam &prm) throw(Error); 
     1557    void sendRequest(const CallSendRequestParam &prm) PJSUA2_THROW(Error); 
    15561558     
    15571559    /** 
     
    15631565     * @return              Call dump and media statistics string. 
    15641566     */ 
    1565     string dump(bool with_media, const string indent) throw(Error); 
     1567    string dump(bool with_media, const string indent) PJSUA2_THROW(Error); 
    15661568     
    15671569    /** 
     
    16011603     */ 
    16021604    void vidSetStream(pjsua_call_vid_strm_op op, 
    1603                       const CallVidSetStreamParam &param) throw(Error); 
     1605                      const CallVidSetStreamParam &param) PJSUA2_THROW(Error); 
    16041606 
    16051607    /** 
     
    16101612     * @return              The stream info. 
    16111613     */ 
    1612     StreamInfo getStreamInfo(unsigned med_idx) const throw(Error); 
     1614    StreamInfo getStreamInfo(unsigned med_idx) const PJSUA2_THROW(Error); 
    16131615     
    16141616    /** 
     
    16191621     * @return              The stream statistic. 
    16201622     */ 
    1621     StreamStat getStreamStat(unsigned med_idx) const throw(Error); 
     1623    StreamStat getStreamStat(unsigned med_idx) const PJSUA2_THROW(Error); 
    16221624     
    16231625    /** 
     
    16281630     * @return              The transport info. 
    16291631     */ 
    1630     MediaTransportInfo getMedTransportInfo(unsigned med_idx) const throw(Error); 
     1632    MediaTransportInfo getMedTransportInfo(unsigned med_idx) const 
     1633                                           PJSUA2_THROW(Error); 
    16311634 
    16321635    /** 
Note: See TracChangeset for help on using the changeset viewer.