add empty constructor.
This commit is contained in:
parent
5755331273
commit
6d0666f285
@ -41,6 +41,7 @@
|
||||
|
||||
class PVarHandler {
|
||||
public:
|
||||
PVarHandler();
|
||||
PVarHandler(PmuppCollection *coll, std::string parse_str, std::string var_name);
|
||||
|
||||
bool isValid() { return fIsValid; }
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user