Dear community friends:
Sorry for my pool English first,i'm a Rookie for c::b..and i've solved some of the problems myself by following the instruction articles(wiki:User Documentation) such as Installing Code::Blocks..
But there is still some troubles i can't figure out...seems like lack of the specific archive.
How can i get function call list like MS VC6
e.g.
class Animal
{
public:
Animal(int height,int weight);
void eat();
void sleep();
};
int main()
{
Animal m_cat;
Animal m_pdog;
m_cat.eat(); <-----How can i get class function list after input "."or"->"
m_pdog->sleep();
}
Just like the screen picture shown in the Home Page:

thanks for any of your hints....