| 539 | // vil_image_view.txx will instanciate convert_components_from_planes<my_int>, |
| 540 | // which we however want to explicitly specialize afterwards. Provide a forward |
| 541 | // declaration here to prevent the compiler from assuming implicit |
| 542 | // instanciation. |
| 543 | |
| 544 | class my_int; |
| 545 | template <class T> |
| 546 | inline bool convert_components_from_planes(vil_image_view<T> &lhs, const |
| 547 | vil_image_view_base &rhs_base); |
| 548 | VCL_DEFINE_SPECIALIZATION |
| 549 | inline bool convert_components_from_planes(vil_image_view<my_int> &, |
| 550 | const vil_image_view_base &); |
| 551 | |