Examples |
Definition at line 19 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 33 of file stock.hpp.
00034 { 00035 ar & code; 00036 ar & name; 00037 ar & open_price; 00038 ar & high_price; 00039 ar & low_price; 00040 ar & last_price; 00041 ar & buy_price; 00042 ar & buy_quantity; 00043 ar & sell_price; 00044 ar & sell_quantity; 00045 }
std::string s11n_example::stock::code |
std::string s11n_example::stock::name |