I am brushing up again and I am getting an error:
Cannot call member function without object.
I am calling like:
FxString text = table.GetEntry(o
You need to declare the function static in your class declaration. e.g.
static
class IC_Utility { // ... static void CP_StringToPString(FxString& inString, FxUChar *outString); // ... };