Flow

Flow

Functions

GType flow_get_type ()
#define FLOW()
#define FLOW_CLASS()
#define FLOW_GET_CLASS()

Types and Values

#define FLOW_TYPE
struct Flow
struct FlowClass

Description

Functions

flow_get_type ()

GType
flow_get_type (void);

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))

Types and Values

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;
};