diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-12 19:39:59 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-12 19:39:59 +0100 |
| commit | 8fc59848c87cc3cb05d9cf983f9dbd9d0e7aa390 (patch) | |
| tree | 9822625565863062fe3b5d44f7d794b34400f68f /dev/Usr/LibCF | |
| parent | 873b670fbdd7b0544d84bab2c24dfa6c3a3c75b2 (diff) | |
TQ-23:
-> Implement CFWindowConnection_ structure.
-> Need a controller class now.
-> Refactor StringBuilder to KStringBuilder
Diffstat (limited to 'dev/Usr/LibCF')
| -rw-r--r-- | dev/Usr/LibCF/Object.h | 2 | ||||
| -rw-r--r-- | dev/Usr/LibCF/String.h | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/dev/Usr/LibCF/Object.h b/dev/Usr/LibCF/Object.h index c7369ee3..4899661e 100644 --- a/dev/Usr/LibCF/Object.h +++ b/dev/Usr/LibCF/Object.h @@ -9,6 +9,8 @@ #include <LibCF/Core.h> +#define CF_OBJECT : public LibCF::CFObject + namespace LibCF { class CFObject; diff --git a/dev/Usr/LibCF/String.h b/dev/Usr/LibCF/String.h new file mode 100644 index 00000000..457a999d --- /dev/null +++ b/dev/Usr/LibCF/String.h @@ -0,0 +1,16 @@ + +/* ------------------------------------------- + + Copyright (C) 2025, Amlal EL Mahrouss, all rights reserved. + +------------------------------------------- */ + +#pragma once + +#include <LibCF/Object.h> + +namespace LibCF +{ + class CFString; + +}
\ No newline at end of file |
