Skip to content
Snippets Groups Projects
Commit 2a59c9fd authored by Julien Malik's avatar Julien Malik
Browse files

ENH: hide internal Parser details

parent f9fd734f
No related branches found
No related tags found
No related merge requests found
......@@ -227,16 +227,6 @@ Parser::~Parser()
{
}
void Parser::InitConst()
{
m_InternalParser->InitConst();
}
void Parser::InitFun()
{
m_InternalParser->InitFun();
}
void Parser::SetExpr(const std::string & Expression)
{
m_InternalParser->SetExpr(Expression);
......
......@@ -56,12 +56,6 @@ public:
/** Type for function/number of arguments map */
typedef std::map<std::string, int> FunctionMapType;
/** Initialize user defined constants */
virtual void InitConst();
/** Initialize user defined functions */
virtual void InitFun();
/** Set the expression to be parsed */
virtual void SetExpr(const std::string & Expression);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment