summaryrefslogtreecommitdiff
path: root/indra/llcommon/threadpool_fwd.h
blob: 50e212ef0582bdf09e50c4168c7bfb020b2b581d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * @file   threadpool_fwd.h
 * @author Nat Goodspeed
 * @date   2022-12-09
 * @brief  Forward declarations for ThreadPool et al.
 *
 * $LicenseInfo:firstyear=2022&license=viewerlgpl$
 * Copyright (c) 2022, Linden Research, Inc.
 * $/LicenseInfo$
 */

#if ! defined(LL_THREADPOOL_FWD_H)
#define LL_THREADPOOL_FWD_H

#include "workqueue.h"

namespace LL
{
    template <class QUEUE>
    struct ThreadPoolUsing;

    using ThreadPool = ThreadPoolUsing<WorkQueue>;
} // namespace LL

#endif /* ! defined(LL_THREADPOOL_FWD_H) */