added debug option

This commit is contained in:
nemu
2008-02-11 07:27:01 +00:00
parent b0a23afead
commit e088b5312e
7 changed files with 192 additions and 18 deletions

View File

@@ -44,7 +44,7 @@ using namespace std;
class PFunctionHandler
{
public:
PFunctionHandler(char *fln);
PFunctionHandler(char *fln, bool debug);
PFunctionHandler(vector<QString> lines);
virtual ~PFunctionHandler();
@@ -55,6 +55,7 @@ class PFunctionHandler
virtual unsigned int GetNoOfFuncs() { return fFuncs.size(); }
private:
bool fDebug;
bool fValid;
QString fFileName;