Update of /cvsroot/scopeapp/scopeapp/src
In directory usw-pr-cvs1:/tmp/cvs-serv11612/src
Modified Files:
ScopeView.h ScopeView.m XYPlotView.h XYPlotView.m
Log Message:
Add stubs for functions to create display controls
Index: ScopeView.h
===================================================================
RCS file: /cvsroot/scopeapp/scopeapp/src/ScopeView.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** ScopeView.h 15 Jul 2002 06:01:56 -0000 1.6
--- ScopeView.h 19 Jul 2002 08:10:12 -0000 1.7
***************
*** 80,83 ****
--- 80,85 ----
-(id) updateControls;
+ -(id) createControls: (NSView*) parentView;
+
- (id)doTriggerOnData: (Sample*[2]) inData
frameCount: (unsigned long) inFrameCount
Index: ScopeView.m
===================================================================
RCS file: /cvsroot/scopeapp/scopeapp/src/ScopeView.m,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ScopeView.m 18 Jul 2002 07:35:58 -0000 1.7
--- ScopeView.m 19 Jul 2002 08:10:12 -0000 1.8
***************
*** 351,354 ****
--- 351,359 ----
}
+ -(id) createControls: (NSView*) parentView
+ {
+ #warning
+ }
+
- (id)doTriggerOnData: (Sample*[2]) inData
frameCount: (unsigned long) inFrameCount
Index: XYPlotView.h
===================================================================
RCS file: /cvsroot/scopeapp/scopeapp/src/XYPlotView.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** XYPlotView.h 15 Jul 2002 06:05:46 -0000 1.1
--- XYPlotView.h 19 Jul 2002 08:10:12 -0000 1.2
***************
*** 56,58 ****
--- 56,60 ----
-(id) updateControls;
+ -(id) createControls: (NSView*) parentView;
+
@end
Index: XYPlotView.m
===================================================================
RCS file: /cvsroot/scopeapp/scopeapp/src/XYPlotView.m,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** XYPlotView.m 18 Jul 2002 07:36:00 -0000 1.2
--- XYPlotView.m 19 Jul 2002 08:10:12 -0000 1.3
***************
*** 85,88 ****
--- 85,93 ----
-(id) updateControls { return self; }
+ -(id) createControls: (NSView*) parentView
+ {
+ #warning
+ }
+
- (id)updateDisplay: (int) inTrace
{
|