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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <config.h>
#include <dhcpsrv/config_backend_dhcp6_mgr.h>

#include <boost/scoped_ptr.hpp><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

namespace isc {
namespace dhcp {

boost::scoped_ptr<ConfigBackendDHCPv6Mgr>&
ConfigBackendDHCPv6Mgr::getConfigBackendDHCPv6MgrPtr() {
    static boost::scoped_ptr<ConfigBackendDHCPv6Mgr> cb_dhcp6_mgr;
    return (cb_dhcp6_mgr);
}

void
ConfigBackendDHCPv6Mgr::create() {
    getConfigBackendDHCPv6MgrPtr().reset(new ConfigBackendDHCPv6Mgr());
}

void
ConfigBackendDHCPv6Mgr::destroy() {
    getConfigBackendDHCPv6MgrPtr().reset();
}

ConfigBackendDHCPv6Mgr&
ConfigBackendDHCPv6Mgr::instance() {
    boost::scoped_ptr<ConfigBackendDHCPv6Mgr>& cb_dhcp6_mgr = getConfigBackendDHCPv6MgrPtr();<--- Variable 'cb_dhcp6_mgr' can be declared as reference to const
    if (!cb_dhcp6_mgr) {
        create();
    }
    return (*cb_dhcp6_mgr);
}

} // end of isc::dhcp namespace
} // end of isc namespace