diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-26 01:47:32 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-26 01:47:32 +0100 |
| commit | c52dbf5513ae7f106634967162da5cfb01dc5af3 (patch) | |
| tree | b6715d0fdacebd48491b9b05cf85f1d92028f84b /dev/lib/fix/network.hpp | |
| parent | 01565adb9cf5ef991196f56c7f5f7b6161daa005 (diff) | |
feat: SOCL v1.0.2, changelog soon!v1.0.2
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/fix/network.hpp')
| -rw-r--r-- | dev/lib/fix/network.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dev/lib/fix/network.hpp b/dev/lib/fix/network.hpp new file mode 100644 index 0000000..0ca0920 --- /dev/null +++ b/dev/lib/fix/network.hpp @@ -0,0 +1,20 @@ +/* +* File: fix/netowrk.hpp + * Purpose: Financial Information Exchange 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 <arpa/inet.h> +#include <sys/socket.h> + +namespace snu::fix +{ + class network_rx; + class network_tx; +} // namespace snu::fix + +#endif // ifndef _SNU_FIX_NETWORK_HPP
\ No newline at end of file |
