Members
class Foo {
public:
enum class Foonums {
FOO1,
FOO2,
...
}
const int FOOBAR = 3;
const bool IS_FOO = true;
VERBOSE_FOO = false;
void runFoo();
std::string fooName = "";
Foo() noexcept;
~Foo() = default;
private:
private int fooAmount = 2;
...
}Getters and setters
Last updated