Is it somehow possible to store the class from a template without making the the whole class a template?
Task:
I have two functions, v1 without parameters and v2 with parameters, If v1 was called somewhere nothing happens with Use(), if v2 was called somewhere Use() should execute a function_ptr with the instance I got from DoSometh(T*).
e.g.
class MyClass
{
//v1 no parameters
void DoSomething()
{
}
//v2 with parameter
template<class T>
void DoSomething(T* instance, void (T::*func)())
{
store somewhere?? = instance;
}
void Use()
{
//if DoSometh(T* instance) was used before
if(instance != NULL)
{
(*instance->)//call function pointer from DoSomething(T*,void (T::*)())
}
}
}
std::function problem
update:
class Timer : public ITickable
{
std::function<void()> test; //adding this does weird things
virtual void Tick() {}
}
class MyClass
{
ITickable* tickable_;
void Tick()
{
tickable_->Tick(); //let's assume it points to a Timer obj.
}
}
I think
std::function
andstd::bind
(C++11) do accomplish what you want, as already suggested in the comments. A simplified mock-up of your Timer class could be:When
setTask
is called with an object and a member-function that can be called on this object, astd::function
object is created (you could choose to do this in a constructor of course). When the timer fires, this object is checked (usingoperator bool()
, provided bystd::function
), and if it is callable (e.g. whensetTask()
has been called before), it calls the function.For example: