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

namespace Bar {

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

private:
  int sum_ = 0;
};

} // namespace cs