From b014300d990a21617da291c83a667e9442f0ab8e Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Mon, 5 May 2025 14:36:16 -0400 Subject: [PATCH] refactor(config): header guard -> pragma once --- src/config/public/config.h | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/src/config/public/config.h b/src/config/public/config.h index 33a901c..3f0c8fe 100644 --- a/src/config/public/config.h +++ b/src/config/public/config.h @@ -18,8 +18,7 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // *********************************************************************** */ -#ifndef CONFIG_H -#define CONFIG_H +#pragma once #include #include @@ -134,12 +133,6 @@ public: */ bool loadConfig(const std::string& configFilePath); - /** - * @brief Get the input table from the configuration. - * @return Input table as a string. - */ - std::string getInputTable() const; - /** * @brief Get a configuration value by key. * @tparam T Type of the value to retrieve. @@ -234,8 +227,6 @@ public: // Setup gTest class as a friend friend class configTestPrivateAccessor; - // -- Resource Manager is a friend of config so it can create a seperate instance + // --- Resource Manager is a friend of config so it can create a separate instance friend class ResourceManager; }; - -#endif \ No newline at end of file