From 0f111cf51b00c4e884b7e53b4fd7ff6e38d8af5e Mon Sep 17 00:00:00 2001 From: untodesu Date: Fri, 26 Dec 2025 23:17:56 +0500 Subject: Add include guards and header comments to sources --- src/core/config/ivalue.hh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/core/config/ivalue.hh') diff --git a/src/core/config/ivalue.hh b/src/core/config/ivalue.hh index 13e9a3a..088276a 100644 --- a/src/core/config/ivalue.hh +++ b/src/core/config/ivalue.hh @@ -1,3 +1,10 @@ +// SPDX-License-Identifier: BSD-2-Clause +// Copyright (c) 2025 Kirill Dmitrievich +// File: ivalue.hh +// Description: Base config value interface + +#ifndef CORE_CONFIG_IVALUE_HH +#define CORE_CONFIG_IVALUE_HH #pragma once namespace config @@ -9,3 +16,5 @@ public: virtual std::string_view get(void) const = 0; }; } // namespace config + +#endif -- cgit