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

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

typedef Test TypeAlias;