| 122 | //! Loads data to a boost binary archive |
| 123 | template <class T> |
| 124 | static void load( std::istringstream & is, T & data ) |
| 125 | { |
| 126 | boost::archive::binary_iarchive iar(is); |
| 127 | iar & data; |
| 128 | } |
| 129 | }; |
| 130 | |
| 131 | struct binary |
nothing calls this directly
no outgoing calls
no test coverage detected