ARTICLE AD BOX
In Code::Blocks, programming in C++, when using Insert/Refactor - All class methods without implementation to define a function that is declared in a nested class, the inserted function name is qualified with just the nested class name and not the outer class also. The menu that appears to select the items displays correctly the implementation with all the classes' names, though.
Is a setting that can be changed to solve this problem?
class Class { public: Class(); virtual ~Class(); class Class2 { void functionOFClass2(); }; };The inserted definition of this function is:
void Class2::functionOFClass2() { }The inserted function definition should be named Class::Class2::functionOFClass2, not just Class2::functionOFClass2.
5
Explore related questions
See similar questions with these tags.
