summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/allowlisted/file.hpp
blob: 5f360e5ea9fcba2d1c8ee1beb68bf626c83d06ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
void SomeFunction();
extern int someVar;
#define SOME_DEFUN 123

class someClass {
  void somePrivateMethod();
public:
  void somePublicMethod(int foo);
};

extern "C" void ExternFunction();

namespace foo {
  void NamespacedFunction();
}


struct StructWithAllowlistedFwdDecl;

struct StructWithAllowlistedDefinition {
    StructWithAllowlistedFwdDecl* other;
};