From 844968b28ffa805bfb5e3ade5b5537d716dca96e Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 6 Jul 2025 17:57:18 +0200 Subject: feat: fix: add `network.hpp` unit of FIX module. Signed-off-by: Amlal El Mahrouss --- lib/fix/network.hpp | 14 ++++++++++++++ lib/fix/parser.hpp | 12 +++++------- 2 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 lib/fix/network.hpp diff --git a/lib/fix/network.hpp b/lib/fix/network.hpp new file mode 100644 index 0000000..0c167e5 --- /dev/null +++ b/lib/fix/network.hpp @@ -0,0 +1,14 @@ +/* +* File: fix/netowrk.hpp + * Purpose: Financial Information Protocol parser implementation in C++. + * Author: Amlal El Mahrouss (founder@snu.systems) + * Copyright 2025, Amlal El Mahrouss and SNU Systems Corp all rights reserved. + */ + +#ifndef _SNU_FIX_NETWORK_HPP +#define _SNU_FIX_NETWORK_HPP + +#include +#include + +#endif // ifndef _SNU_FIX_NETWORK_HPP \ No newline at end of file diff --git a/lib/fix/parser.hpp b/lib/fix/parser.hpp index 83bbd1a..c20fe2f 100644 --- a/lib/fix/parser.hpp +++ b/lib/fix/parser.hpp @@ -1,12 +1,12 @@ /* - * File: fix.hpp - * Purpose: Financial Information Protocol implementation in C++. + * File: fix/parser.hpp + * Purpose: Financial Information Protocol parser implementation in C++. * Author: Amlal El Mahrouss (founder@snu.systems) * Copyright 2025, Amlal El Mahrouss and SNU Systems Corp all rights reserved. */ -#ifndef _SNU_FIX_HPP -#define _SNU_FIX_HPP +#ifndef _SNU_FIX_PARSER_HPP +#define _SNU_FIX_PARSER_HPP #include #include @@ -14,8 +14,6 @@ #include #include #include -#include -#include namespace snu::fix { @@ -103,4 +101,4 @@ namespace snu::fix }; } // namespace snu::fix -#endif // ifndef _SNU_FIX_HPP +#endif // ifndef _SNU_FIX_PARSER_HPP -- cgit v1.2.3