X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/186fb2b18b89a0280b8cc4b5ea8f7a59d3bd0853..58d030a0db2b320459ce55d5a7b7b440d873d1d1:/projects/sgconf/xml.h

diff --git a/projects/sgconf/xml.h b/projects/sgconf/xml.h
index 549a69b3..d00d441f 100644
--- a/projects/sgconf/xml.h
+++ b/projects/sgconf/xml.h
@@ -18,23 +18,14 @@
  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
-#ifndef __STG_SGCONF_XML_H__
-#define __STG_SGCONF_XML_H__
-
-#include <string>
-#include <map>
+#pragma once
 
 namespace SGCONF
 {
 
-struct CONFIG;
-
-void PrintXML(const std::string& xml);
+class OPTION_BLOCKS;
+class COMMANDS;
 
-bool RawXMLFunction(const SGCONF::CONFIG & config,
-                    const std::string & arg,
-                    const std::map<std::string, std::string> & /*options*/);
+void AppendXMLOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks);
 
 }
-
-#endif