DevC++ dot operator list??

Started by
2 comments, last by LongInteger 18 years ago
in vc++ when you instantiate a class eg CMyClass myclass; and then you go on to use the . operator like myclass.myfunc(), the myfunc() comes appears in a drop down list when you press the dot after the instantiation. Ive noticed it doesnt do it in devc++ . . . is this just the way it is or can you make it do the list . . it doesnt work with the pointer ref eg CMyClass* myclass; myclass->myfunc() . .. .this doesnt present the function list either. so. Can it be done?
Advertisement
I assume you have Dev-C++ 4.9.xxx
Go to the editor options and to the class browser settings.

Activate the class browser and code completion.
Enable scanning of local and global headers.

Click on OK, and the program should automatically scan all global and local headers. Try again then...
When ever I had used it, it seemed to slow everything in the editor down, but that was probably because one file included around 200 others [smile].
Projects:> Thacmus - CMS (PHP 5, MySQL)Paused:> dgi> MegaMan X Crossfire
nice one guys thanks

This topic is closed to new replies.

Advertisement