indent_class

Whether the 'class' body is indented.

Possible values are true or false, default false.

By default class members are not indented.

Examples

true

Code before:

class Barrel {
public:

Barrel();
virtual ~Barrel();

int getWidth() const;

protected:
int width;
};

Code after:

class Barrel {
public:

    Barrel();
    virtual ~Barrel();

    int getWidth() const;

protected:
    int width;
};

See also