Merge pull request #81 from Am1GO/master

Dirty fix for #79
master
Am1GO 2015-08-04 11:04:12 +03:00
commit 78dc42fd96
2 changed files with 8 additions and 0 deletions

View File

@ -151,6 +151,13 @@ Config::Config():
__CLASS );
}
Config::Config( const Config & configIn )
{
*this = configIn;
cleanup_storable = false;
cleanup_keywords = false;
}
Config::Config( ConfigInfo * configInfo ):
cleanup_storable( false )
{

View File

@ -78,6 +78,7 @@ public:
OpCodes parseToken( const char *, const OptionType );
bool parseOrValidate( const string &, const OptionType, bool validate = false );
Config( const Config & );
Config( const Config &, ConfigInfo * );
Config( ConfigInfo * );
Config();