Re: dynamic function definition
In article <1152606557.125613.292830@b28g2000cwb.googlegroups.com>,
cesco <fd.calabrese@gmail.com> wrote:
Hi,
I need to define the body of a function in the constructor of a class.
For example, the class has a member function Log (that is the public
interface of the class), but I want the body of this function to be
defined as something or as something else in the constructor of the
class:
class MyClass
{
public:
void Log(const int& id, const int& value);
private:
void LogON(const int& id, const int& value);
void LogOFF();
};
MyClass::MyClass
{
// define here whether the function "Log" will behave as LogON or
LogOFF according to a switch
}
void MyClass::LogON(const int& id, const int& value)
{
// do something like push_back
}
void MyClass::LogOFF()
{
// do nothing
}
// don't know if I need or not the following definition
void MyClass::Log(const int& id, const int& value)
{
}
Any suggestion on how to do this?
Thanks and regards
Francesco
First give both functions the same signature,
example:
class Foo
{
void log_on(int,int); // does something
void log_off(int,int){} // does nothing;
typedef (Foo::*PMF)(int,int);
PMF p_log; //pointer to member function.
publc:
Foo()
{
/*
set p_log to either &Foo::log_on or
&Foo::log_off as appropriate,
*/
}
void log(int id,value)
{
// dispatch proper function
(this->*p_log)(id,value);
}
};
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]