summaryrefslogtreecommitdiffhomepage
path: root/dev/zka/CFKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <zka-holder@mahrouss-logic.com>2024-10-14 05:58:38 +0000
committerAmlal El Mahrouss <zka-holder@mahrouss-logic.com>2024-10-14 05:58:38 +0000
commit7ad3739afdfaa2466723467f5ef2526f171c87c3 (patch)
tree37775f4299281598b0f5121df4c188392daebd04 /dev/zka/CFKit
parent7477a0f942c374b652da4f80cdb36d4661aac3c8 (diff)
parentd9d82713326069478e6dd212763d1fac15e65370 (diff)
Merge branch 'port-stage1-hello-world' into 'unstable'
IMP: Basic ARM64 port. See merge request mahrouss/zka-dev!20
Diffstat (limited to 'dev/zka/CFKit')
-rw-r--r--dev/zka/CFKit/GUIDWizard.hxx4
-rw-r--r--dev/zka/CFKit/URL.hxx33
2 files changed, 2 insertions, 35 deletions
diff --git a/dev/zka/CFKit/GUIDWizard.hxx b/dev/zka/CFKit/GUIDWizard.hxx
index 034aceea..c3f8e5ac 100644
--- a/dev/zka/CFKit/GUIDWizard.hxx
+++ b/dev/zka/CFKit/GUIDWizard.hxx
@@ -17,6 +17,6 @@
namespace Kernel::XRN::Version1
{
- Ref<GUIDSequence*> cf_make_sequence(const ArrayList<UInt32>& seq);
- ErrorOr<Ref<Kernel::StringView>> cf_try_guid_to_string(Ref<GUIDSequence*>& guid);
+ Ref<GUIDSequence> cf_make_sequence(const ArrayList<UInt32>& seq);
+ ErrorOr<Ref<Kernel::StringView>> cf_try_guid_to_string(Ref<GUIDSequence>& guid);
} // namespace Kernel::XRN::Version1
diff --git a/dev/zka/CFKit/URL.hxx b/dev/zka/CFKit/URL.hxx
deleted file mode 100644
index 02cced28..00000000
--- a/dev/zka/CFKit/URL.hxx
+++ /dev/null
@@ -1,33 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-#ifndef _INC_URL_HPP_
-#define _INC_URL_HPP_
-
-#include <NewKit/Defines.hxx>
-#include <NewKit/String.hxx>
-
-namespace Kernel
-{
- class URL final
- {
- public:
- explicit URL(StringView& strUrl);
- ~URL();
-
- public:
- Ref<ErrorOr<StringView>> Location() noexcept;
- Ref<ErrorOr<StringView>> Protocol() noexcept;
-
- private:
- Ref<StringView> fUrlView;
- };
-
- ErrorOr<StringView> url_extract_location(const Char* url);
- ErrorOr<StringView> url_extract_protocol(const Char* url);
-} // namespace Kernel
-
-#endif /* ifndef _INC_URL_HPP_ */