summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/NetworkLookup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/OSSupport/NetworkLookup.h')
-rw-r--r--src/OSSupport/NetworkLookup.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/OSSupport/NetworkLookup.h b/src/OSSupport/NetworkLookup.h
index 416219947..bb01de407 100644
--- a/src/OSSupport/NetworkLookup.h
+++ b/src/OSSupport/NetworkLookup.h
@@ -14,11 +14,9 @@
-class cNetworkLookup :
- public cIsThread
+class cNetworkLookup : public cIsThread
{
-public:
-
+ public:
cNetworkLookup();
virtual ~cNetworkLookup() override;
@@ -28,15 +26,11 @@ public:
/** Cancels any scheduled lookups and joins the lookup thread. */
void Stop();
-protected:
-
+ protected:
/** Process the queue until the thread is stopped. */
virtual void Execute() override final;
-private:
-
+ private:
/** The queue of lookup tasks waiting to be executed. */
cQueue<std::function<void()>> m_WorkQueue;
};
-
-