blob: c465be44e306638ca5ffd0335a0dfc8848cb74ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <string>
class Test {
public:
Test();
Test(int param);
void testCallFromClass();
};
void testCallFromSwift();
void testCallWithParam(const std::string ¶m);
|