| 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> |
nothing calls this directly
no outgoing calls
no test coverage detected