- Timestamp:
- Dec 4, 2013 3:01:20 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/pjsua2/pjsip/include/pjsua2/types.hpp
r4670 r4672 34 34 #include <vector> 35 35 36 /**37 * @defgroup PJSUA2_TYPES Data structure38 * @ingroup PJSUA2_Ref39 * @{40 */41 42 36 /** PJSUA2 API is inside pj namespace */ 43 37 namespace pj 44 38 { 39 40 /** 41 * @defgroup PJSUA2_TYPES General Data Structure 42 * @ingroup PJSUA2_DS 43 * @{ 44 */ 45 45 46 using std::string; 46 47 using std::vector; … … 165 166 166 167 #else 168 /** Raise Error exception */ 167 169 # define PJSUA2_RAISE_ERROR(status) \ 168 170 PJSUA2_RAISE_ERROR2(status, string()) 169 171 172 /** Raise Error exception */ 170 173 # define PJSUA2_RAISE_ERROR2(status,op) \ 171 174 PJSUA2_RAISE_ERROR3(status, op, string()) 172 175 176 /** Raise Error exception */ 173 177 # define PJSUA2_RAISE_ERROR3(status,op,txt) \ 174 178 do { \ … … 180 184 #endif 181 185 186 /** Raise Error exception if the expression fails */ 182 187 #define PJSUA2_CHECK_RAISE_ERROR2(status, op) \ 183 188 do { \ … … 187 192 } while (0) 188 193 194 /** Raise Error exception if the status fails */ 189 195 #define PJSUA2_CHECK_RAISE_ERROR(status) \ 190 196 PJSUA2_CHECK_RAISE_ERROR2(status, "") 191 197 198 /** Raise Error exception if the expression fails */ 192 199 #define PJSUA2_CHECK_EXPR(expr) \ 193 200 do { \ … … 197 204 198 205 ////////////////////////////////////////////////////////////////////////////// 199 206 /** 207 * Version information. 208 */ 200 209 struct Version 201 210 { … … 247 256 }; 248 257 258 /** 259 * @} PJSUA2 260 */ 261 249 262 } // namespace pj 250 263 251 /**252 * @} PJSUA2253 */254 255 264 256 265
Note: See TracChangeset
for help on using the changeset viewer.