Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => CodeCompletion redesign => Topic started by: Loaden on January 18, 2010, 01:11:09 pm

Title: I hope CB allows the user to select the class name
Post by: Loaden 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;
}
(http://ppn.googlecode.com/files/sshot-8.png)

[attachment deleted by admin]
Title: Re: I hope CB allows the user to select the class name
Post by: ollydbg on March 18, 2010, 03:24:56 pm
@loaden:
Does this CC toolbar enhancement (http://forums.codeblocks.org/index.php/topic,12210.0.html) solve your problem?  :D
Title: Re: I hope CB allows the user to select the class name
Post by: Loaden on March 19, 2010, 06:08:01 am
Great, works well.
Title: Re: I hope CB allows the user to select the class name
Post by: bencharluo 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?