/////////////////////////////////////////////////////////////////////////////////////////
| 212 | |
| 213 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 214 | void |
| 215 | pcl::DOTMOD:: |
| 216 | loadTemplates (const char * file_name) |
| 217 | { |
| 218 | std::ifstream file_stream; |
| 219 | file_stream.open (file_name, std::ofstream::in | std::ofstream::binary); |
| 220 | |
| 221 | deserialize (file_stream); |
| 222 | |
| 223 | file_stream.close (); |
| 224 | } |
| 225 | |
| 226 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 227 | void |
nothing calls this directly
no test coverage detected