2 Jul
2011
2 Jul
'11
5:21 p.m.
typedef boost::function
actionFuntion; typedef boost::shared_ptr<actionFuntion> actionFuntionPtr; <...> class CurveGenRegressionTestScenario : public RegressionTestScenario { public: void changeBaseDate(const std::string &argument); <...> and I am trying to use the following: actionFuntion funPtr; funPtr = &CurveGenRegressionTestScenario::changeBaseDate;
but it fails. I have no idea why. Could someone give me a hint?
boost::function