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:
@ -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
|
||||
{
|
||||
|
@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user