summaryrefslogtreecommitdiffhomepage
path: root/dev/lib
diff options
context:
space:
mode:
Diffstat (limited to 'dev/lib')
-rw-r--r--dev/lib/fix/fix.hpp (renamed from dev/lib/fix/parser.hpp)0
-rw-r--r--dev/lib/net/url.hpp8
-rw-r--r--dev/lib/simd/simd.hpp18
3 files changed, 26 insertions, 0 deletions
diff --git a/dev/lib/fix/parser.hpp b/dev/lib/fix/fix.hpp
index 723506e..723506e 100644
--- a/dev/lib/fix/parser.hpp
+++ b/dev/lib/fix/fix.hpp
diff --git a/dev/lib/net/url.hpp b/dev/lib/net/url.hpp
index ff6aebe..7263a52 100644
--- a/dev/lib/net/url.hpp
+++ b/dev/lib/net/url.hpp
@@ -61,4 +61,12 @@ namespace ocl::net
return ss_.size() > 0;
}
};
+
+ enum class protocol
+ {
+ http,
+ https,
+ mailto,
+ bad
+ };
} // namespace ocl::net
diff --git a/dev/lib/simd/simd.hpp b/dev/lib/simd/simd.hpp
new file mode 100644
index 0000000..6374a51
--- /dev/null
+++ b/dev/lib/simd/simd.hpp
@@ -0,0 +1,18 @@
+/*
+ * File: simd/simd.hpp
+ * Purpose: SIMD C++ library.
+ * Author: Amlal El Mahrouss (founder@snu.systems)
+ * Copyright 2025, Amlal El Mahrouss, and SNU Systems, Corp, licensed under the BSL 1.0 license.
+ */
+
+#pragma once
+
+#include <lib/core/includes.hpp>
+
+namespace ocl::snu::simd
+{
+ struct simd_backend;
+
+ template <typename SimdBackend>
+ struct basic_simd;
+}