X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e5499c61083684b28bcbc6950aae66cbf0938703..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/include/stg/corporations.h diff --git a/include/stg/corporations.h b/include/stg/corporations.h index e167301b..944844c6 100644 --- a/include/stg/corporations.h +++ b/include/stg/corporations.h @@ -18,29 +18,30 @@ * Author : Maxim Mamontov */ -#ifndef CORPORATIONS_H -#define CORPORATIONS_H - -#include "corp_conf.h" +#pragma once #include -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 +}