blob: c465be44e306638ca5ffd0335a0dfc8848cb74ed [file] [log] [blame]
#pragma once
#include <string>
class Test {
public:
Test();
Test(int param);
void testCallFromClass();
};
void testCallFromSwift();
void testCallWithParam(const std::string &param);