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;
}
[attachment deleted by admin]