add empty constructor.

This commit is contained in:
suter_a 2020-04-30 17:37:52 +02:00
parent 5755331273
commit 6d0666f285
2 changed files with 11 additions and 0 deletions

View File

@ -41,6 +41,7 @@
class PVarHandler {
public:
PVarHandler();
PVarHandler(PmuppCollection *coll, std::string parse_str, std::string var_name);
bool isValid() { return fIsValid; }

View File

@ -36,6 +36,16 @@
#include "PStatement.hpp"
#include "PProgram.hpp"
//--------------------------------------------------------------------------
/**
* @brief PVarHandler::PVarHandler
*/
PVarHandler::PVarHandler() :
fColl(nullptr), fParseStr(""), fVarName(""), fIsValid(false)
{
// nothing to be done here
}
//--------------------------------------------------------------------------
/**
* @brief PVarHandler::PVarHandler