xcomm/include/xspcomm/_not_export.h

13 lines
216 B
C++

#ifndef __xspcomm_no_export__
#define __xspcomm_no_export__
#include <functional>
template <typename R, typename... Args>
class _xfunction_ptr {
public:
std::function<R(Args...)> func = nullptr;
};
#endif