test_123/include/app.hpp

20 lines
468 B
C++
Raw Normal View History

2026-05-16 04:54:48 +00:00
#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