]> git.stg.codes - stg.git/blobdiff - include/stg/corporations.h
Public interfaces: part 1
[stg.git] / include / stg / corporations.h
index e167301b5d72fa1cf2fdc480ab13ebbf92728759..944844c64bcc41d53b8ede27d16cba489886cc33 100644 (file)
  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
-#ifndef CORPORATIONS_H
-#define CORPORATIONS_H
-
-#include "corp_conf.h"
+#pragma once
 
 #include <string>
 
-class ADMIN;
-
-class CORPORATIONS {
-public:
-    virtual ~CORPORATIONS() {}
-    virtual int Add(const CORP_CONF & corp, const ADMIN * admin) = 0;
-    virtual int Del(const std::string & name, const ADMIN * admin) = 0;
-    virtual int Change(const CORP_CONF & corp, const ADMIN * admin) = 0;
-    virtual bool Find(const std::string & name, CORP_CONF * corp) = 0;
-    virtual bool Exists(const std::string & name) const = 0;
-    virtual const std::string & GetStrError() const = 0;
+namespace STG
+{
+
+struct Admin;
+struct CorpConf;
+
+struct Corporations {
+    virtual ~Corporations() = default;
+
+    virtual int Add(const CorpConf& corp, const Admin* admin) = 0;
+    virtual int Del(const std::string& name, const Admin* admin) = 0;
+    virtual int Change(const CorpConf& corp, const Admin* admin) = 0;
+    virtual bool Find(const std::string& name, CorpConf* corp) = 0;
+    virtual bool Exists(const std::string& name) const = 0;
+    virtual const std::string& GetStrError() const = 0;
     virtual size_t Count() const = 0;
 
     virtual int OpenSearch() const = 0;
-    virtual int SearchNext(int, CORP_CONF * corp) const = 0;
+    virtual int SearchNext(int, CorpConf* corp) const = 0;
     virtual int CloseSearch(int) const = 0;
 };
 
-#endif
+}