Kea 2.7.4
command_mgr.h
Go to the documentation of this file.
1// Copyright (C) 2015-2024 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef COMMAND_MGR_H
8#define COMMAND_MGR_H
9
11#include <boost/noncopyable.hpp>
12
13namespace isc {
14namespace config {
15
20class CommandMgr : public HookedCommandMgr, public boost::noncopyable {
21public:
22
27 static CommandMgr& instance();
28
29private:
30
32 CommandMgr();
33};
34
35} // end of isc::config namespace
36} // end of isc namespace
37#endif
Commands Manager implementation for the Kea servers.
Definition command_mgr.h:20
static CommandMgr & instance()
CommandMgr is a singleton class.
Command Manager which can delegate commands to a hook library.
Defines the logger used by the top-level component of kea-lfc.