Mantas Smicius / Publications
Forum
Is it possible to pass function as method argument in template class
I wonder is it possible to pass function to method as argument in case that method is template. Valid C++ example of how I want to do: template < typename TValueType> class ValueWrapper { public : TValueType* Value; ValueWrapper(TValueType* initialValue){ Value = initialValue;}