ITK Function Reference

(V10000.1.0.60_20160308.00)
Data Structures | Macros | Typedefs | Enumerations
tc_arguments.h File Reference

Go to the source code of this file.

Data Structures

struct  TC_argument_list_s
 
struct  TC_argument_s
 

Macros

#define TC_init_argument_list(a)   { if(a != 0) a->i = 0; }
 
#define TC_next_argument(a)   ((a == 0) ? 0 : ((a->i < a->number_of_arguments) ? (a->arguments[a->i++].val_union.str_value) : 0))
 
#define TC_next_int_argument(a)   ((a == 0) ? 0 : ((a->i < a->number_of_arguments) ? (a->arguments[a->i++].val_union.int_value) : 0))
 
#define TC_number_of_arguments(a)   ((a == 0) ? 0 : a->number_of_arguments)
 

Typedefs

typedef struct TC_argument_list_s TC_argument_list_t
 
typedef struct TC_argument_s TC_argument_t
 
typedef enum TC_module_state_e TC_module_state_t
 

Enumerations

enum  TC_module_state_e { TC_uninitialized, TC_initializing, TC_initialized }
 

Detailed Description

Teamcenter arguments

Definition in file tc_arguments.h.