#ifndef __MOCKCPP_API_HOOK_HOLDER_FACTORY_H__ #define __MOCKCPP_API_HOOK_HOLDER_FACTORY_H__ #include MOCKCPP_NS_START struct ApiHookHolder; struct ApiHookHolderFactory { template static ApiHookHolder* create(F api) { return new ParameterizedApiHookHolder(api); } }; MOCKCPP_NS_END #endif