From 14db7b5bbf20a797d9edb07e3f7f84c9e90c2427 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 28 Aug 2025 11:56:29 +0200 Subject: feat: Implement the `Name` method for every CFObject interface. Signed-off-by: Amlal El Mahrouss --- public/frameworks/CoreFoundation.fwrk/headers/Object.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'public') 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 -- cgit v1.2.3