I made a class and store pointers to instances of these classes in a linked list ( <list> using namespace std; )

how can i call one of the instances 's functions from the list.

looking for something like

list <MYCLASS *> MyList;

MyList[i]->ShowMethod(); <------- ????????