Hi everybody
When I write the method of class,I can't get the method of class when I'm using "::" ,for example
class exp
{
public:
void get();
};
void exp:: //Now, codeblocks can't show the list of the method "get()"
exp p;
p. //Don't show the list.
Which version and OS?
First of all, try changing the name of your class. exp() is a standard math function. It happens often that the parser gets confused if you "overload" such standard identifiers.
My CodeBlocks version is 12.11,my os is Win XP sp3