Language
C++
Compiler
gcc 7.3.0
Options
Boost 1.67.0
C++11
no pedantic
Raw compiler options
-lboost_serialization
baseclass.cpp
derivedclass.cpp
$ g++ prog.cc -I/opt/wandbox/boost-1.67.0/gcc-7.3.0/include -std=c++11 -lboost_serialization baseclass.cpp derivedclass.cpp
--- Storing objects in the file 'output'... ---
--- Storage done, now loading the first object as BaseClass ---
b1: 9BaseClass: regular stuff
b2: 12DerivedClass: DerivedClass AND special cool stuff
Exit Code:
0