Not certain this is valid, but:
template<>void Foo<T>( T(*Func)() ) { // do something first (e.g. some setup) return tearDown(Func());}template<>T tearDown<T>( T result) { // do something after return result;}
Not certain this is valid, but:
template<>void Foo<T>( T(*Func)() ) { // do something first (e.g. some setup) return tearDown(Func());}template<>T tearDown<T>( T result) { // do something after return result;}