Service_NSSM/CC_SDK/Include/basic/CCFunction.h
2025-09-27 14:24:18 +08:00

14 lines
222 B
C++

#ifndef CCFUNCTION_H
#define CCFUNCTION_H
#include <functional>
namespace CTL {
template<typename T>
class Function:public std::function<T> {
public:
using std::function<T>::function;
};
}
#endif