Flow

Flow

Synopsis

#define             FLOW                                (obj)
#define             FLOW_CLASS                          (klass)
#define             FLOW_GET_CLASS                      (obj)
#define             FLOW_TYPE
struct              Flow;
struct              FlowClass;
GType               flow_get_type                       (void);

Description

Details

FLOW()

#define FLOW(obj)                (G_TYPE_CHECK_INSTANCE_CAST ((obj), FLOW_TYPE, Flow))

FLOW_CLASS()

#define FLOW_CLASS(klass)        (G_TYPE_CHECK_CLASS_CAST ((klass), FLOW_TYPE, FlowClass))

FLOW_GET_CLASS()

#define FLOW_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), FLOW_TYPE, FlowClass))

FLOW_TYPE

#define FLOW_TYPE                (flow_get_type ())

struct Flow

struct Flow {
	GObject parent_instance;

	Dictionary *dictionary;
	Parameter *parameter;
};

struct FlowClass

struct FlowClass {
	GObjectClass parent_class;
};

flow_get_type ()

GType               flow_get_type                       (void);