MCPcopy Create free account
hub / github.com/USCiLab/cereal / save

Method save

sandbox/performance.cpp:116–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114 //! Saves data to a boost binary archive
115 template <class T>
116 static void save( std::ostringstream & os, T const & data )
117 {
118 boost::archive::binary_oarchive oar(os);
119 oar & data;
120 }
121
122 //! Loads data to a boost binary archive
123 template <class T>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected