docs: add doxygen (#1004)

This commit is contained in:
ReenigneArcher
2023-03-07 20:26:03 -05:00
committed by GitHub
parent a1e6f441e4
commit 31885434f2
76 changed files with 3375 additions and 221 deletions

View File

@@ -4,12 +4,12 @@
#include "task_pool.h"
#include <thread>
namespace util {
namespace thread_pool_util {
/*
* Allow threads to execute unhindered
* while keeping full control over the threads.
*/
class ThreadPool : public TaskPool {
class ThreadPool : public task_pool_util::TaskPool {
public:
typedef TaskPool::__task __task;
@@ -117,5 +117,5 @@ public:
}
}
};
} // namespace util
} // namespace thread_pool_util
#endif