File: corba-workbook.h

package info (click to toggle)
gnumeric 1.4.3-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 71,576 kB
  • ctags: 28,555
  • sloc: ansic: 282,333; xml: 45,788; sh: 8,479; makefile: 3,119; yacc: 1,129; lisp: 200; perl: 173; python: 86
file content (16 lines) | stat: -rw-r--r-- 739 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef GNUMERIC_WORKBOOK_CONTROL_CORBA_H
#define GNUMERIC_WORKBOOK_CONTROL_CORBA_H

#include <gnumeric.h>
#include "GNOME_Gnumeric.h"

#define WORKBOOK_CONTROL_CORBA_TYPE     (workbook_control_corba_get_type ())
#define WORKBOOK_CONTROL_CORBA(obj)     (G_TYPE_CHECK_INSTANCE_CAST ((obj), WORKBOOK_CONTROL_CORBA_TYPE, WorkbookControlCORBA))
#define IS_WORKBOOK_CONTROL_CORBA(o)    (G_TYPE_CHECK_INSTANCE_TYPE ((o), WORKBOOK_CONTROL_CORBA_TYPE))

GType            workbook_control_corba_get_type  (void);
WorkbookControl *workbook_control_corba_new       (WorkbookView *optional_view,
						   Workbook	*optional_wb);
GNOME_Gnumeric_Workbook workbook_control_corba_obj(WorkbookControl *wbc);

#endif /* GNUMERIC_WORKBOOK_CONTROL_CORBA_H */