// #pragma once #ifndef TARIFF_CURRENCY_H_INCLUDED #define TARIFF_CURRENCY_H_INCLUDED /// /// Currency data /// class TariffCurrency { public: int pcu_id; std::string pcu_sign; std::string pcu_major; std::string pcu_minor; bool pcu_active; }; #endif // TARIFF_CURRENCY_H_INCLUDED