waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

example.cpp (255B)


      1 #include "example.h"
      2 
      3 constexpr int Example::not_exposed;
      4 
      5 int Example::calculate(int some_argument) const { return _value + some_argument; }
      6 
      7 int Example::getSomething() const { return _value; }
      8 
      9 void Example::setSomething(int value) { _value = value; }