Ignore:
Timestamp:
Dec 2, 2013 4:40:29 AM (10 years ago)
Author:
ming
Message:

Re #1519: Add call media

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/pjsua2/pjsip/include/pjsua2/media.hpp

    r4663 r4666  
    142142    virtual ~Media(); 
    143143 
     144    /** 
     145     * Get type of the media. 
     146     * 
     147     * @return          The media type. 
     148     */ 
     149    pjmedia_type getType() const; 
     150 
    144151protected: 
    145152    /** 
    146153     * Constructor. 
    147154     */ 
    148     Media(); 
     155    Media(pjmedia_type med_type); 
     156 
     157private: 
     158    /** 
     159     * Media type. 
     160     */ 
     161    pjmedia_type        type; 
    149162}; 
    150163 
Note: See TracChangeset for help on using the changeset viewer.