mirror of
https://github.com/Ascend/ascend-docker-runtime.git
synced 2025-10-17 20:30:37 +08:00
20 lines
251 B
C
20 lines
251 B
C
|
|
#ifndef __MOCKCPP_API_HOOK_HOLDER_H__
|
|
#define __MOCKCPP_API_HOOK_HOLDER_H__
|
|
|
|
#include <mockcpp/mockcpp.h>
|
|
|
|
MOCKCPP_NS_START
|
|
|
|
struct ApiHookHolder
|
|
{
|
|
virtual void * getApiHook() const = 0;
|
|
|
|
virtual ~ApiHookHolder() {}
|
|
};
|
|
|
|
MOCKCPP_NS_END
|
|
|
|
#endif
|
|
|