Files
swift-mirror/test/Interop/Cxx/static/Inputs/static-member-func.h

13 lines
322 B
C++

#ifndef TEST_INTEROP_CXX_STATIC_INPUTS_STATIC_MEMBER_FUNC_H
#define TEST_INTEROP_CXX_STATIC_INPUTS_STATIC_MEMBER_FUNC_H
class WithStaticMemberFunc {
public:
static int staticMemberFunc();
typedef int (*Func)();
static Func getStaticMemberFuncAddress()
__attribute__((swift_attr("import_unsafe")));
};
#endif