News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

I hope CB allows the user to select the class name

Started by Loaden, January 18, 2010, 01:11:09 PM

Previous topic - Next topic

Loaden

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]

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Loaden


bencharluo

I don't know what it is meaning!
Does it mean in symbols tab we can see class name?