- Code: Select all
class Foo
{
private:
int some_int;
public:
Foo();
~Foo();
};
I'd like the access modifiers (public, protected, private) indented like above, but cannot for the life of me figure out how to achieve this in CodeLite.
Any help would be appreciated.