Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/optionx_cpp/bridges/telegram.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

#include "bridges/telegram/TelegramParsedMessage.hpp"
#include "bridges/telegram/TelegramRawMessage.hpp"
#include "bridges/telegram/TelegramSignalParser.hpp"
#include "bridges/telegram/detail/TelegramSignalParser.hpp"
#include "bridges/telegram/TelegramSignalBridgeConfig.hpp"
#include "bridges/telegram/TelegramSignalBridge.hpp"
#include "bridges/telegram/TelegramWorkerMessageSource.hpp"
#include "bridges/telegram/detail/TelegramWorkerMessageSource.hpp"

#endif // OPTIONX_HEADER_BRIDGES_TELEGRAM_HPP_INCLUDED
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/// \brief Configuration for the Telegram signal bridge.

#include "data/bridge.hpp"
#include "bridges/telegram/TelegramSignalParser.hpp"
#include "bridges/telegram/detail/TelegramSignalParser.hpp"

#include <cmath>
#include <memory>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once
#ifndef OPTIONX_HEADER_BRIDGES_TELEGRAM_TELEGRAM_SIGNAL_PARSER_HPP_INCLUDED
#define OPTIONX_HEADER_BRIDGES_TELEGRAM_TELEGRAM_SIGNAL_PARSER_HPP_INCLUDED
#ifndef OPTIONX_HEADER_BRIDGES_TELEGRAM_DETAIL_TELEGRAM_SIGNAL_PARSER_HPP_INCLUDED
#define OPTIONX_HEADER_BRIDGES_TELEGRAM_DETAIL_TELEGRAM_SIGNAL_PARSER_HPP_INCLUDED

/// \file TelegramSignalParser.hpp
/// \file bridges/telegram/detail/TelegramSignalParser.hpp
/// \brief Deterministic regex parser for Telegram signal and outcome messages.

#include "bridges/telegram/TelegramParsedMessage.hpp"
Expand Down Expand Up @@ -840,4 +840,4 @@ namespace optionx::bridges::telegram {

} // namespace optionx::bridges::telegram

#endif // OPTIONX_HEADER_BRIDGES_TELEGRAM_TELEGRAM_SIGNAL_PARSER_HPP_INCLUDED
#endif // OPTIONX_HEADER_BRIDGES_TELEGRAM_DETAIL_TELEGRAM_SIGNAL_PARSER_HPP_INCLUDED
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once
#ifndef OPTIONX_HEADER_BRIDGES_TELEGRAM_TELEGRAM_WORKER_MESSAGE_SOURCE_HPP_INCLUDED
#define OPTIONX_HEADER_BRIDGES_TELEGRAM_TELEGRAM_WORKER_MESSAGE_SOURCE_HPP_INCLUDED
#ifndef OPTIONX_HEADER_BRIDGES_TELEGRAM_DETAIL_TELEGRAM_WORKER_MESSAGE_SOURCE_HPP_INCLUDED
#define OPTIONX_HEADER_BRIDGES_TELEGRAM_DETAIL_TELEGRAM_WORKER_MESSAGE_SOURCE_HPP_INCLUDED

/// \file TelegramWorkerMessageSource.hpp
/// \file bridges/telegram/detail/TelegramWorkerMessageSource.hpp
/// \brief Adapter from a tg-client-stdio-style worker client to Telegram bridge input.

#include "bridges/telegram/TelegramSignalBridge.hpp"
Expand Down Expand Up @@ -134,4 +134,4 @@ namespace optionx::bridges::telegram {

} // namespace optionx::bridges::telegram

#endif // OPTIONX_HEADER_BRIDGES_TELEGRAM_TELEGRAM_WORKER_MESSAGE_SOURCE_HPP_INCLUDED
#endif // OPTIONX_HEADER_BRIDGES_TELEGRAM_DETAIL_TELEGRAM_WORKER_MESSAGE_SOURCE_HPP_INCLUDED
Loading