mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 20:17:06 +03:00
10 lines
149 B
C++
10 lines
149 B
C++
#include "threadpool.h"
|
|
|
|
namespace engine
|
|
{
|
|
ThreadPool* ThreadPool::getDefault()
|
|
{
|
|
static ThreadPool threadpool(true);
|
|
return &threadpool;
|
|
}
|
|
} |