=================================================================== RCS file: /home/cvs/OpenXM/src/cfep/MyOpenGLController.h,v retrieving revision 1.1.1.1 retrieving revision 1.3 diff -u -p -r1.1.1.1 -r1.3 --- OpenXM/src/cfep/MyOpenGLController.h 2006/03/03 23:31:12 1.1.1.1 +++ OpenXM/src/cfep/MyOpenGLController.h 2018/10/18 04:59:45 1.3 @@ -10,7 +10,7 @@ #import "MyOpenGLCommand.h" #import "MyOpenGLView.h" @class MyDocument; -#define GID_MAX 1024 +#define MY_GID_MAX 1024 @interface MyOpenGLController : NSWindowController { IBOutlet NSWindow *window; @@ -38,5 +38,16 @@ -(BOOL) windowShouldClose: (NSWindow *)sender ; -(void) addOglComm: (NSString *)comm ; // Adding a OpenGL command. -(void) addOglInitComm: (NSString *)comm ; // Adding a OpenGL initialization command. +-(int) countOfOglComm ; +-(int) countOfOglInitComm; +-(int) removeLastOfOglComm; +-(int) removeLastOfOglInitComm; +-(int) removeAllOfOglComm; +-(int) removeAllOfOglInitComm; +-(NSMutableArray *) getListOfOglComm; +-(NSMutableArray *) getListOfOglInitComm; +-(void) showCount; +-(void) showEyeX: (float) x Y: (float) y Z: (float) z ; +-(void) clearOutput; -(void) output: (NSString *)msg; @end