summaryrefslogtreecommitdiffstats
path: root/Tests/UseSWIG/SwigSrcOUTPUT_DIR/foo.hpp
blob: b227463c022ed157351814c0e1f51e2c055cf69b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

namespace Foo {

class Math
{
public:
  void add(int value);
  int get_sum() const;

private:
  int sum_ = 0;
};

} // namespace cs