private:
static ClassifierFactory *fgInstance;
typedef std::map<std::string, Creator> CallMap;
CallMap fCalls;
These are some members of the class ClassifierFactory.
Can I please know the details/members of the Creator datatype/class/struct?
I was unable to track it down in the code.
Thanks.
Definition is in the same file, look at the top:
// typedef for functor that creates object of class IMethod
typedef IMethod* (*Creator)(const TString& job, const TString& title,
DataSetInfo& dsi, const TString& option );
Easiest way to find out is using an IDE and just hover the mouse cursor over the “Create” as shown in this screenshot:
@behrenhoff
My bad I missed it.
Thank you for pointing out.
system
Closed
4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.