Dev-C++ class browser

Started by
1 comment, last by kelaklub 18 years, 8 months ago
Have any of you guys been able to get the class browser for Dev-C++ to display the class data for template classes, or is it just something it can't do right now? I had originally declared and defined my template class in the same header file, the class browser wouldn't pick it up. Then I tried one of those put the template function implementations in a seperate cpp file, and then create another cpp where you instantiate a particular type of that template, and #include your template cpp file. The class browser won't pick up on that either. Thanks.
Advertisement
I assume you've set it up to scan the appropriate files (Tools -> Editor Options -> Class Browsing -> Scan local/global files). Occasionally it still wont work, in which case if you just open the file (ctrl + click the #include macro, or open it manually), it should fix that problem.
Thanks, i'll try that out.

This topic is closed to new replies.

Advertisement