#ifndef MODULAR_APP_HPP #define MODULAR_APP_HPP /** * @file app.hpp * @brief Master header that includes all modular components. * * Include this single header to access every module of the application: * Logger, ConfigManager, DataManager, Utils, DataProcessor, CommandLineAdapter. */ #include "logger.hpp" #include "configmanager.hpp" #include "datamanager.hpp" #include "utils.hpp" #include "processor.hpp" #include "adapter.hpp" #endif // MODULAR_APP_HPP