¡@

Home 

c++ Programming Glossary: m_c

C++ implicit copy constructor for a class that contains other objects

http://stackoverflow.com/questions/1810163/c-implicit-copy-constructor-for-a-class-that-contains-other-objects

like this class X public Y private int m_a char m_b Z m_c The following methods will be defined by your compiler. Constructor.. 0 Default construction of basic PODS zeros them m_b 0 m_c Calls the default constructor of Z If this is compiler generated.. PODS does nothing m_b The values are un initialized. m_c Calls the default constructor of Z If this is compiler generated..

boost:serialization reconstruction (loading)

http://stackoverflow.com/questions/6734814/boostserialization-reconstruction-loading

public base derived double a double b base a b m_a a m_b b m_c a b some checks double get_a const return m_a double get_b const.. double get_b const return m_b double get_c const return m_c double run return 1.0 private friend class boost serialization.. need to return c a and b already done for constructor ar m_c double m_a m_b m_c Save and load the data required for the constructor...