You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "example.h"
|
|
|
|
constexpr int Example::not_exposed;
|
|
|
|
int Example::calculate(int some_argument) const { return _value + some_argument; }
|
|
|
|
int Example::getSomething() const { return _value; }
|
|
|
|
void Example::setSomething(int value) { _value = value; }
|