]> git.stg.codes - stg.git/blobdiff - include/stg/corp_conf.h
Public interfaces: part 1
[stg.git] / include / stg / corp_conf.h
index 5f941b954ec623b0447db1d7b78742dcc43abb98..6b1cbb83342cc085be68c03e8779eaa5222887cb 100644 (file)
  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
  */
 
-#ifndef CORP_CONF_H
-#define CORP_CONF_H
+#pragma once
 
-#include "resetable.h"
+#include "stg/optional.h"
 
 #include <string>
 
-struct CORP_CONF
+namespace STG
 {
-CORP_CONF() : name(), cash(0) {}
-explicit CORP_CONF(const std::string & n) : name(n), cash(0) {}
-CORP_CONF(const std::string & n, double c) : name(n), cash(c) {}
 
-std::string name;
-double      cash;
-};
-
-struct CORP_CONF_RES
+struct CorpConf
 {
-CORP_CONF_RES()
-    : name(), cash()
-{}
+    CorpConf() noexcept : cash(0) {}
+    explicit CorpConf(const std::string & n) noexcept : name(n), cash(0) {}
+    CorpConf(const std::string & n, double c) noexcept : name(n), cash(c) {}
 
-CORP_CONF_RES & operator=(const CORP_CONF & conf)
-{
-name = conf.name;
-cash = conf.cash;
-return *this;
-}
+    CorpConf(const CorpConf&) = default;
+    CorpConf& operator=(const CorpConf&) = default;
+    CorpConf(CorpConf&&) = default;
+    CorpConf& operator=(CorpConf&&) = default;
 
-CORP_CONF GetData() const
-{
-CORP_CONF cc;
-cc.name = name.data();
-cc.cash = cash.data();
-return cc;
-}
+    bool operator==(const CorpConf& rhs) const noexcept { return name == rhs.name; }
 
-RESETABLE<std::string> name;
-RESETABLE<double>      cash;
+    std::string name;
+    double      cash;
 };
 
-inline
-bool operator==(const CORP_CONF & a, const CORP_CONF & b)
+struct CorpConfOpt
 {
-return a.name == b.name;
-}
+    Optional<std::string> name;
+    Optional<double>      cash;
+};
 
-#endif //CORP_CONF_H
+}