Situation:
class Foo {
public:
void a();
void b();
};
Foo::a()
{
}
Foo::b()
{
}
If I insert a new method between the two existing methods...
class Foo {
public:
void a();
void newMethod();
void b();
};
...and click on "Implement method". I expect:
Foo::a()
{
}
Foo::newMethod()
{
}
Foo::b()
{
}
An option in the VAX comfiguration for the insert position of the implementation would be nice. The configuration could be a list with insert positions which are tried to use in a given order. The possible insert positions could be:
- After implementation of next implemented method before.
- Before implementation of next declared method with implementation.
- At end of file/namespace bracet.