| Top |  |  |  |  | 
| void | gog_data_allocator_allocate () | 
| GogDataEditor * | gog_data_allocator_editor () | 
| void | gog_data_editor_set_format () | 
| void | gog_data_editor_set_value_double () | 
void gog_data_allocator_allocate (GogDataAllocator *dalloc,GogPlot *plot);
GogDataEditor * gog_data_allocator_editor (GogDataAllocator *dalloc,GogDataset *set,int dim_i,GogDataType data_type);
void gog_data_editor_set_format (GogDataEditor *editor,GOFormat const *fmt);
void gog_data_editor_set_value_double (GogDataEditor *editor,double val,GODateConventions const *date_conv);
typedef struct {
	GTypeInterface		   base;
	void	        (*allocate) (GogDataAllocator *a, GogPlot *plot);
	GogDataEditor * (*editor)   (GogDataAllocator *a, GogDataset *set,
				     int dim_i, GogDataType data_type);
} GogDataAllocatorClass;
typedef struct {
	GTypeInterface		   base;
	void     (*set_format)       (GogDataEditor *editor,
				      GOFormat const *fmt);
	void     (*set_value_double) (GogDataEditor *editor, double val,
				      GODateConventions const *date_conv);
} GogDataEditorClass;
Interface to edit GOData.