diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-28 11:56:29 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-28 11:56:29 +0200 |
| commit | 14db7b5bbf20a797d9edb07e3f7f84c9e90c2427 (patch) | |
| tree | 4b3786c81f911d97587b58389e5858228db725ce /public | |
| parent | 2a85aaf252725ec5b3b70a5baf99cfacee6b120a (diff) | |
feat: Implement the `Name` method for every CFObject interface.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public')
| -rw-r--r-- | public/frameworks/CoreFoundation.fwrk/headers/Object.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Object.h b/public/frameworks/CoreFoundation.fwrk/headers/Object.h index 5cb2050a..59ff8ff1 100644 --- a/public/frameworks/CoreFoundation.fwrk/headers/Object.h +++ b/public/frameworks/CoreFoundation.fwrk/headers/Object.h @@ -20,5 +20,7 @@ class CFObject { virtual ~CFObject() = default; LIBSYS_COPY_DEFAULT(CFObject); + + virtual const Char* Name() { return "[\"CFObject\"];"; } }; -} // namespace CF
\ No newline at end of file +} // namespace CF |
