summaryrefslogtreecommitdiff
path: root/bindgen-integration/cpp/Test.h
blob: 2e15bb491abbbdb0d4ac48159b65f99d6a014ffe (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

class Test final {
  int m_int;
  double m_double;
public:
  static const char* name();
  Test(int foo);
  Test(double foo);
};