#ifndef CCFUNCTION_H #define CCFUNCTION_H #include namespace CTL { template class Function:public std::function { public: using std::function::function; }; } #endif