| Examples |
Definition at line 9 of file stock.hpp.
Public Member Functions | |
| template<typename Archive> | |
| void | serialize (Archive &ar, const unsigned int version) |
Public Attributes | |
| std::string | code |
| std::string | name |
| double | open_price |
| double | high_price |
| double | low_price |
| double | last_price |
| double | buy_price |
| int | buy_quantity |
| double | sell_price |
| int | sell_quantity |
| void s11n_example::stock::serialize | ( | Archive & | ar, | |
| const unsigned int | version | |||
| ) |
Definition at line 23 of file stock.hpp.
00024 { 00025 ar & code; 00026 ar & name; 00027 ar & open_price; 00028 ar & high_price; 00029 ar & low_price; 00030 ar & last_price; 00031 ar & buy_price; 00032 ar & buy_quantity; 00033 ar & sell_price; 00034 ar & sell_quantity; 00035 }
| std::string s11n_example::stock::code |
| std::string s11n_example::stock::name |