// Copyright (C) 2018-2024 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/.
#ifndef ISC_YANG_REVISIONS_H
#define ISC_YANG_REVISIONS_H 1
#include <string><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <unordered_map><--- Include file: not found. Please note: Cppcheck does not need standard library headers to get proper results.
namespace isc {
namespace yang {
// Table of module name / revision.
static const std::unordered_map<std::string, std::string> YANG_REVISIONS = {
#ifdef KEATEST_MODULE
{ "keatest-module", "2022-11-30" },
#endif // KEATEST_MODULE
{ "ietf-dhcpv6-types", "2018-09-04" },
{ "ietf-dhcpv6-options", "2018-09-04" },
{ "ietf-dhcpv6-server", "2018-09-04" },
{ "kea-types", "2019-08-12" },
{ "kea-dhcp-types", "2024-05-29" },
{ "kea-dhcp4-server", "2024-05-29" },
{ "kea-dhcp6-server", "2024-05-29" },
{ "kea-ctrl-agent", "2019-08-12" },
{ "kea-dhcp-ddns", "2022-07-27" }
}; // YANG_REVISIONS
} // namespace yang
} // namespace isc
#endif // ISC_YANG_REVISIONS_H