| 1234567891011121314151617 |
- // Copyright (C) 2009-2016, Panagiotis Christopoulos Charitos.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #pragma once
- #include <anki/util/Thread.h>
- #include <anki/util/Singleton.h>
- namespace anki
- {
- /// Singleton
- typedef Singleton<ThreadPool> ThreadPoolSingleton;
- } // end namespace anki
|