[Thplot-cvs] CVS: thplot/src/Data csvData.cpp,1.1.1.1,1.2 csvData.h,1.1.1.1,1.2
Status: Pre-Alpha
Brought to you by:
apeden
From: Tony P. <ap...@us...> - 2002-07-04 23:42:39
|
Update of /cvsroot/thplot/thplot/src/Data In directory usw-pr-cvs1:/tmp/cvs-serv17611/src/Data Modified Files: csvData.cpp csvData.h Log Message: Compile fixes for g++ 3.0.4 Index: csvData.cpp =================================================================== RCS file: /cvsroot/thplot/thplot/src/Data/csvData.cpp,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** csvData.cpp 22 Jun 2002 11:57:12 -0000 1.1.1.1 --- csvData.cpp 4 Jul 2002 23:42:36 -0000 1.2 *************** *** 23,26 **** --- 23,28 ---- #include <stdlib.h> + using namespace std; + csvData::csvData(Globals *g){ global = g; Index: csvData.h =================================================================== RCS file: /cvsroot/thplot/thplot/src/Data/csvData.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** csvData.h 22 Jun 2002 11:57:12 -0000 1.1.1.1 --- csvData.h 4 Jul 2002 23:42:36 -0000 1.2 *************** *** 23,26 **** --- 23,27 ---- #include <fstream> + #include <iostream> #include <cstdio> #include <string> *************** *** 29,32 **** --- 30,35 ---- #include <cmath> #include <Main/Globals.h> + + using namespace std; /**This class handles reading a data file and placing user-requested data into arrays for plotting. |