]> git.stg.codes - stg.git/blobdiff - stargazer/plugins/configuration/sgconfig/parser_user_info.h
Public interfaces: part 1
[stg.git] / stargazer / plugins / configuration / sgconfig / parser_user_info.h
index 76153f573e512acade527ff4003c6417cf74144e..50f31017b669b97ab47494b731b70db7be0c5961 100644 (file)
@@ -18,8 +18,7 @@
  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
-#ifndef __STG_PARSER_USER_INFO_H__
-#define __STG_PARSER_USER_INFO_H__
+#pragma once
 
 #include "parser.h"
 
 
 #include <string>
 
-class USERS;
-
 namespace STG
 {
+
+struct Users;
+
 namespace PARSER
 {
 
@@ -40,22 +40,22 @@ class USER_INFO : public BASE_PARSER
         class FACTORY : public BASE_PARSER::FACTORY
         {
             public:
-                FACTORY(const USERS & users) : m_users(users) {}
-                virtual BASE_PARSER * create(const ADMIN & admin) { return new USER_INFO(admin, m_users); }
-                static void Register(REGISTRY & registry, const USERS & users)
+                FACTORY(const Users & users) : m_users(users) {}
+                virtual BASE_PARSER * create(const Admin & admin) { return new USER_INFO(admin, m_users); }
+                static void Register(REGISTRY & registry, const Users & users)
                 { registry[ToLower(tag)] = new FACTORY(users); }
             private:
-                const USERS & m_users;
+                const Users & m_users;
         };
 
         static const char * tag;
 
-        USER_INFO(const ADMIN & admin, const USERS & users)
+        USER_INFO(const Admin & admin, const Users & users)
             : BASE_PARSER(admin, tag), m_users(users) {}
         int Start(void * data, const char * el, const char ** attr);
 
     private:
-        const USERS & m_users;
+        const Users & m_users;
         std::string m_login;
 
         void CreateAnswer();
@@ -63,5 +63,3 @@ class USER_INFO : public BASE_PARSER
 
 } // namespace PARSER
 } // namespace STG
-
-#endif