adopted that it does compile with Microsoft Visual Studio 2008 Express Edition (see spirit_fcn_test.mak which is an input file for nmake.exe)

This commit is contained in:
2010-08-16 07:31:10 +00:00
parent 5fba77fe72
commit 3be37b2599
7 changed files with 101 additions and 60 deletions

View File

@@ -34,10 +34,9 @@
#include <iostream>
#include <vector>
#include <string>
using namespace std;
#include <qstring.h>
#include "PFunctionGrammar.h"
#include "PFunction.h"
@@ -45,7 +44,7 @@ class PFunctionHandler
{
public:
PFunctionHandler(char *fln, bool debug);
PFunctionHandler(vector<QString> lines);
PFunctionHandler(vector<string> lines);
virtual ~PFunctionHandler();
virtual bool IsValid() { return fValid; }
@@ -58,11 +57,11 @@ class PFunctionHandler
bool fDebug;
bool fValid;
QString fFileName;
string fFileName;
vector<double> fParam;
vector<int> fMap;
vector<QString> fLines;
vector<string> fLines;
vector<PFunction> fFuncs;