1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-20 16:26:54 +01:00

minor code cleaning and examples update

This commit is contained in:
2014-02-10 11:22:56 +00:00
parent db61c7ea90
commit 84d063edf0
6 changed files with 68 additions and 44 deletions

View File

@ -34,7 +34,7 @@
BEGIN_NAMESPACE
/******************************************************************************
* Parser classes *
* Expression node class *
******************************************************************************/
class MathNode
{
@ -191,7 +191,7 @@ DECL_OP(Div);
DECL_OP(Pow);
/******************************************************************************
* Compiler class *
* Interpreter class *
******************************************************************************/
class MathInterpreter
{

View File

@ -40,10 +40,10 @@ private:
virtual void initScanner(void) = 0;
virtual void destroyScanner(void) = 0;
public:
DataObj* data;
void* scanner;
std::istream* stream;
std::string* streamName;
DataObj *data;
void *scanner;
std::istream *stream;
std::string *streamName;
};