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

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