acl/lib_fiber/fiber_cpp/fiber_cpp.h

24 lines
362 B
C
Raw Normal View History

/*
2018-11-30 14:38:22 +08:00
* fiber_cpp.h
* fiber_cpp
*
* Created by zsx on 18/4/25.
* Copyright (c) 2018 zsx. All rights reserved.
2018-11-30 14:38:22 +08:00
*
*/
#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