X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/64b687f8ec36a103865044613cb0f42f98aeda3a..e7ccd2b51d13d9900fb3e841c13562e57448b279:/projects/stargazer/plugins/configuration/sgconfig/parser.h

diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser.h b/projects/stargazer/plugins/configuration/sgconfig/parser.h
index e76d8f4c..3a667360 100644
--- a/projects/stargazer/plugins/configuration/sgconfig/parser.h
+++ b/projects/stargazer/plugins/configuration/sgconfig/parser.h
@@ -39,6 +39,7 @@ public:
     virtual ~BASE_PARSER() {}
     virtual int ParseStart(void *data, const char *el, const char **attr) = 0;
     virtual int ParseEnd(void *data, const char *el) = 0;
+    virtual void Reset() { answerList->clear(); depth = 0; }
 
     void SetAnswerList(std::list<std::string> * ansList) { answerList = ansList; }
 
@@ -50,7 +51,6 @@ public:
 
     void SetCurrAdmin(ADMIN & cua) { currAdmin = &cua; }
     std::string & GetStrError() { return strError; }
-    void Reset() { answerList->clear(); depth = 0; }
 
 protected:
     BASE_PARSER(const BASE_PARSER & rvalue);