Ignore:
Timestamp:
Dec 4, 2013 3:01:20 AM (11 years ago)
Author:
bennylp
Message:

Re #1519: doxygen fixes and other minor fixes

File:
1 edited

Legend:

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

    r4670 r4672  
    3434#include <vector> 
    3535 
    36 /** 
    37  * @defgroup PJSUA2_TYPES Data structure 
    38  * @ingroup PJSUA2_Ref 
    39  * @{ 
    40  */ 
    41  
    4236/** PJSUA2 API is inside pj namespace */ 
    4337namespace pj 
    4438{ 
     39 
     40/** 
     41 * @defgroup PJSUA2_TYPES General Data Structure 
     42 * @ingroup PJSUA2_DS 
     43 * @{ 
     44 */ 
     45 
    4546using std::string; 
    4647using std::vector; 
     
    165166 
    166167#else 
     168    /** Raise Error exception */ 
    167169#   define PJSUA2_RAISE_ERROR(status)           \ 
    168170        PJSUA2_RAISE_ERROR2(status, string()) 
    169171 
     172/** Raise Error exception */ 
    170173#   define PJSUA2_RAISE_ERROR2(status,op)       \ 
    171174        PJSUA2_RAISE_ERROR3(status, op, string()) 
    172175 
     176/** Raise Error exception */ 
    173177#   define PJSUA2_RAISE_ERROR3(status,op,txt)   \ 
    174178        do { \ 
     
    180184#endif 
    181185 
     186/** Raise Error exception if the expression fails */ 
    182187#define PJSUA2_CHECK_RAISE_ERROR2(status, op)   \ 
    183188        do { \ 
     
    187192        } while (0) 
    188193 
     194/** Raise Error exception if the status fails */ 
    189195#define PJSUA2_CHECK_RAISE_ERROR(status)        \ 
    190196        PJSUA2_CHECK_RAISE_ERROR2(status, "") 
    191197 
     198/** Raise Error exception if the expression fails */ 
    192199#define PJSUA2_CHECK_EXPR(expr)                 \ 
    193200        do { \ 
     
    197204 
    198205////////////////////////////////////////////////////////////////////////////// 
    199  
     206/** 
     207 * Version information. 
     208 */ 
    200209struct Version 
    201210{ 
     
    247256}; 
    248257 
     258/** 
     259 * @}  PJSUA2 
     260 */ 
     261 
    249262} // namespace pj 
    250263 
    251 /** 
    252  * @}  PJSUA2 
    253  */ 
    254  
    255264 
    256265 
Note: See TracChangeset for help on using the changeset viewer.