I have :
enum Screens
{
    INVENTORY,
    STUFF,
    CRAFTING,
    GAMESCREEN,
    NONE
};
typedef struct  s_action    
{
    s_action() : _screen(NONE), _compartment(NULL){};
    Screens     _screen;
    Compartment *_compartment;
}               s_action;
std::map<Screens, std::map<Screens, void (GestionClick::*)(s_action&, s_action&)> > _correlationTable;
What is the syntax in order to call a member function of GestionClick ?
 
    