2021-08-15 20:07:12 +00:00
|
|
|
#ifndef cwFlowSys_h
|
|
|
|
#define cwFlowSys_h
|
|
|
|
|
|
|
|
namespace cw
|
|
|
|
{
|
|
|
|
namespace flow
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef handle<struct flow_str> handle_t;
|
|
|
|
|
2021-08-23 02:41:33 +00:00
|
|
|
rc_t create( handle_t& hRef, const object_t& classCfg, const object_t& networkCfg );
|
2021-08-15 20:07:12 +00:00
|
|
|
rc_t exec( handle_t& hRef );
|
|
|
|
rc_t destroy( handle_t& hRef );
|
|
|
|
|
|
|
|
void print_class_list( handle_t& hRef );
|
|
|
|
void print_network( handle_t& hRef );
|
|
|
|
|
|
|
|
rc_t test( const object_t* class_cfg, const object_t* cfg );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|