Changeset 1622 for XIOS/trunk/src/interface/c/icaxis.cpp
- Timestamp:
- 12/11/18 13:22:07 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/trunk/src/interface/c/icaxis.cpp
r1542 r1622 28 28 29 29 void cxios_axis_handle_create (XAxisPtr * _ret, const char * _id, int _id_len) 30 TRY 30 31 { 31 32 std::string id; … … 35 36 CTimer::get("XIOS").suspend() ; 36 37 } 38 CATCH_DUMP_STACK 37 39 38 40 void cxios_axisgroup_handle_create (XAxisGroupPtr * _ret, const char * _id, int _id_len) 41 TRY 39 42 { 40 43 std::string id; … … 44 47 CTimer::get("XIOS").suspend() ; 45 48 } 49 CATCH_DUMP_STACK 46 50 47 51 // -------------------- Vérification des identifiants ----------------------- 48 52 49 53 void cxios_axis_valid_id (bool * _ret, const char * _id, int _id_len) 54 TRY 50 55 { 51 56 std::string id; … … 56 61 CTimer::get("XIOS").suspend() ; 57 62 } 63 CATCH_DUMP_STACK 58 64 59 65 void cxios_axisgroup_valid_id (bool * _ret, const char * _id, int _id_len) 66 TRY 60 67 { 61 68 std::string id; … … 67 74 68 75 } 76 CATCH_DUMP_STACK 69 77 70 78 } // extern "C"
Note: See TracChangeset
for help on using the changeset viewer.