/////////////////////////////////////////////////////////////////////////////////////////
| 199 | |
| 200 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 201 | void |
| 202 | pcl::DOTMOD:: |
| 203 | saveTemplates (const char * file_name) const |
| 204 | { |
| 205 | std::ofstream file_stream; |
| 206 | file_stream.open (file_name, std::ofstream::out | std::ofstream::binary); |
| 207 | |
| 208 | serialize (file_stream); |
| 209 | |
| 210 | file_stream.close (); |
| 211 | } |
| 212 | |
| 213 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 214 | void |