OSDN Git Service

Create a new command for edge enhancement before edge detection
[eos/hostdependX86LINUX64.git] / include / PropertyTcl.hh
1 #ifndef PROPERTY_TCL_HH
2 #define PROPERTY_TCL_HH
3
4 #include <tcl.h>
5 #include "Property.hh"
6
7 typedef struct PropertyTclInfo {
8         int N;
9         Tcl_Obj* objPtr;
10         Tcl_Obj* cmdPtr;
11 } PropertyTclInfo;
12
13 typedef struct PropertyTclState {
14         Tcl_HashTable hash;
15         int           uid;
16 } PropertyTclState;
17
18 extern int PropertyTclInit(Tcl_Interp *interp); 
19
20 #endif