Distribution_Service/CC_SDK/Include/basic/CCFunction.h
2025-11-11 17:46:19 +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