Author Topic: I hope CB allows the user to select the class name  (Read 7131 times)

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
I hope CB allows the user to select the class name
« on: January 18, 2010, 01:11:09 pm »
Which I know, VS, and CodeLite support the class name choices, I hope CB also allows the user to select the class name.
Code
#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]

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: I hope CB allows the user to select the class name
« Reply #1 on: March 18, 2010, 03:24:56 pm »
@loaden:
Does this CC toolbar enhancement solve your problem?  :D
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.

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: I hope CB allows the user to select the class name
« Reply #2 on: March 19, 2010, 06:08:01 am »
Great, works well.

bencharluo

  • Guest
Re: I hope CB allows the user to select the class name
« Reply #3 on: June 04, 2010, 04:36:15 pm »
I don't know what it is meaning!
Does it mean in symbols tab we can see class name?