mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 02:47:56 +08:00
9697f95b8f
This reverts commit 15d999759e
.
24 lines
362 B
C++
24 lines
362 B
C++
/*
|
|
* fiber_cpp.h
|
|
* fiber_cpp
|
|
*
|
|
* Created by zsx on 18/4/25.
|
|
* Copyright (c) 2018年 zsx. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#ifndef fiber_cpp_
|
|
#define fiber_cpp_
|
|
|
|
/* The classes below are exported */
|
|
#pragma GCC visibility push(default)
|
|
|
|
class fiber_cpp
|
|
{
|
|
public:
|
|
void HelloWorld(const char *);
|
|
};
|
|
|
|
#pragma GCC visibility pop
|
|
#endif
|