13 lines
234 B
C++
13 lines
234 B
C++
#pragma once
|
|
#include "IVrThreadPool.h"
|
|
#include "IVrKernelTool.h"
|
|
|
|
class CVrKernelTool : public IVrKernelTool
|
|
{
|
|
public:
|
|
CVrKernelTool();
|
|
|
|
// 创建线程池
|
|
virtual bool CreateThreadPool(IVrThreadPool** ppThreadPool);
|
|
};
|