OpaqueT.tcc 189 B

123456789101112
  1. /*
  2. Example files for explicit opaque templates
  3. */
  4. #include "OpaqueT.h"
  5. namespace NICE {
  6. // Implementations
  7. template<class T>void OpaqueT<T>::CallMe(T arg) {
  8. std::cout << arg;
  9. }
  10. }