2
0

Threadpool.h 243 B

1234567891011121314
  1. #ifndef ANKI_CORE_THREADPOOL_H
  2. #define ANKI_CORE_THREADPOOL_H
  3. #include "anki/util/Thread.h"
  4. #include "anki/util/Singleton.h"
  5. namespace anki {
  6. /// Singleton
  7. typedef Singleton<Threadpool> ThreadpoolSingleton;
  8. } // end namespace anki
  9. #endif