]> git.stg.codes - stg.git/blobdiff - stglibs/srvconf.lib/include/stg/servconf.h
Added corporations management.
[stg.git] / stglibs / srvconf.lib / include / stg / servconf.h
index b7884964400ef77905877ff0d6cbb8bb224b5a35..f2afda398e54388f367191de0c451f8c66af2557 100644 (file)
 
 /*
  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
- */
-
- /*
- $Revision: 1.10 $
- $Date: 2009/03/17 09:52:35 $
- $Author: faust $
+ *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
 #ifndef __STG_STGLIBS_SERVCONF_H__
@@ -38,6 +33,7 @@ struct USER_CONF_RES;
 struct USER_STAT_RES;
 struct TARIFF_DATA_RES;
 struct SERVICE_CONF_RES;
+struct CORP_CONF_RES;
 
 namespace STG
 {
@@ -89,6 +85,14 @@ public:
                    SIMPLE::CALLBACK f, void * data);
     int DelService(const std::string & name, SIMPLE::CALLBACK f, void * data);
 
+    int GetCorporations(GET_CORPORATIONS::CALLBACK f, void * data);
+    int GetCorp(const std::string & name, GET_CORP::CALLBACK f, void * data);
+    int ChgCorp(const CORP_CONF_RES & conf, SIMPLE::CALLBACK f, void * data);
+    int AddCorp(const std::string & name,
+                const CORP_CONF_RES & conf,
+                SIMPLE::CALLBACK f, void * data);
+    int DelCorp(const std::string & name, SIMPLE::CALLBACK f, void * data);
+
     const std::string & GetStrError() const;
 
 private: