Service_NSSM/CC_SDK/Include/basic/CCFunction.h

14 lines
222 B
C
Raw Normal View History

2025-09-27 14:24:18 +08:00
#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