4 #ifndef DJINNI_GENERATED_CURRENCYUNIT_HPP 5 #define DJINNI_GENERATED_CURRENCYUNIT_HPP 12 namespace ledger {
namespace core {
namespace api {
28 int32_t numberOfDecimal_)
29 : name(
std::move(name_))
30 , symbol(
std::move(symbol_))
31 , code(
std::move(code_))
32 , numberOfDecimal(
std::move(numberOfDecimal_))
36 this->name = cpy.
name;
38 this->code = cpy.
code;
46 this->name = cpy.
name;
48 this->code = cpy.
code;
53 template <
class Archive>
54 void load(Archive& archive) {
55 archive(name, symbol, code, numberOfDecimal);
58 template <
class Archive>
59 void save(Archive& archive)
const {
60 archive(name, symbol, code, numberOfDecimal);
65 #endif //DJINNI_GENERATED_CURRENCYUNIT_HPP Definition: BitcoinLikeFeePolicy.hpp:29
std::string symbol
Definition: CurrencyUnit.hpp:19
std::string code
Definition: CurrencyUnit.hpp:21
Definition: CurrencyUnit.hpp:15
Definition: Account.cpp:8
std::string name
Definition: CurrencyUnit.hpp:17
int32_t numberOfDecimal
Definition: CurrencyUnit.hpp:23