TinkeCell API
1.0.0
C/Python/Octave/Ruby API
|
00001 #ifndef TINKERCELL_TC_CONNECTIONINSERTION_API_H 00002 #define TINKERCELL_TC_CONNECTIONINSERTION_API_H 00003 00004 #include "TC_structs.h" 00005 BEGIN_C_DECLS 00006 00014 TCAPIEXPORT tc_items tc_getConnectedNodesWithRole(long connection, const char* role); 00015 00023 TCAPIEXPORT tc_items tc_getConnectionsWithRole(long part, const char* role); 00024 00029 TCAPIEXPORT void tc_ConnectionInsertion_api( 00030 tc_items (*getConnectedPartsWithRole)(long,const char*), 00031 tc_items (*getConnectionsWithRole)(long,const char*) 00032 ); 00033 00034 END_C_DECLS 00035 #endif 00036