What I'm trying to do is create a function pointer to a single class instance function. I want to do this so I can do something like this:
C->member_method();
instead of:
Config::inst()->member_method();
but I'm not sure how to go about it. Here is my singleton class:
class Config {
private:
Config() {}
static Config* m_instance;
public:
~Config() {}
static Config* inst() {
if (m_instance == nullptr) {
m_instance = new Config;
}
return m_instance;
}
bool load();
};
Thanks in advance
Simply create a normal class without static methods, ditch the singleton pattern aside, and create an instance.
The burden of singleton pattern usually outweigh any benefit.