Update of /cvsroot/thplot/thplot/src/Main
In directory usw-pr-cvs1:/tmp/cvs-serv11105/src/Main
Modified Files:
Globals.h
Log Message:
Changes to support plotting multiple curves.
Index: Globals.h
===================================================================
RCS file: /cvsroot/thplot/thplot/src/Main/Globals.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** Globals.h 22 Jun 2002 11:57:11 -0000 1.1.1.1
--- Globals.h 2 Jul 2002 17:20:42 -0000 1.2
***************
*** 28,34 ****
--- 28,39 ----
#define GLOBAL_H
+ #include <string>
+ #include <vector>
+
#include <FL/Fl_Gl_Window.h>
typedef enum { letter, legal, tabloid, A3, A4 } PaperSizes;
+
+ typedef vector<string> ParamList;
class Globals {
|