mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-10 20:29:10 +01:00
10 lines
255 B
C++
10 lines
255 B
C++
#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; }
|