Which I know, VS, and CodeLite support the class name choices, I hope CB also allows the user to select the class name.
#include <iostream>
using namespace std;
class A
{
public:
void func1() {}
void func2() {}
void func3() {}
};
class B
{
public:
void func1() {}
void func2() {}
void func3() {}
};
class C
{
public:
void func1() {}
void func2() {}
void func3() {}
};
int main()
{
cout << "Hello world!" << endl;
return 0;
}
(http://ppn.googlecode.com/files/sshot-8.png)
[attachment deleted by admin]
@loaden:
Does this CC toolbar enhancement (http://forums.next.codeblocks.org/index.php/topic,12210.0.html) solve your problem? :D
Great, works well.
I don't know what it is meaning!
Does it mean in symbols tab we can see class name?