Threadpool.h 404 B

12345678910111213141516171819
  1. // Copyright (C) 2009-2015, Panagiotis Christopoulos Charitos.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #ifndef ANKI_CORE_THREADPOOL_H
  6. #define ANKI_CORE_THREADPOOL_H
  7. #include "anki/util/Thread.h"
  8. #include "anki/util/Singleton.h"
  9. namespace anki {
  10. /// Singleton
  11. typedef Singleton<Threadpool> ThreadpoolSingleton;
  12. } // end namespace anki
  13. #endif