summaryrefslogtreecommitdiff
path: root/Tests/UseSWIG/SwigSrcOUTPUT_DIR/cs.cpp
blob: e4aa56261a00f7fc32d85d3a2f07207dcee90b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <bar.hpp>
#include <foo.hpp>

namespace Foo {

void Math::add(int value)
{
  sum_ += value;
}

int Math::get_sum() const
{
  return sum_;
}
}

namespace Bar {

void Math::add(int value)
{
  sum_ += value;
}

int Math::get_sum() const
{
  return sum_;
}

} // namespace cs