diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-02-11 10:29:48 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-02-11 10:29:48 +0100 |
| commit | 3effa2d2e513f81e633079c395ae8544031edd6d (patch) | |
| tree | bf87e17217c44e738984682539b9bf93efb8cff5 /dev/Usr/LibCF/Property.h | |
| parent | 1583ee83e3e3e49673884fbdb309911dafef215f (diff) | |
ADD: Tweaks and improvements on AHCI.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Usr/LibCF/Property.h')
| -rw-r--r-- | dev/Usr/LibCF/Property.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev/Usr/LibCF/Property.h b/dev/Usr/LibCF/Property.h index 629dba27..5c2916f4 100644 --- a/dev/Usr/LibCF/Property.h +++ b/dev/Usr/LibCF/Property.h @@ -14,11 +14,11 @@ namespace LibCF { - class CFString; - class CFProperty; + class CFString; + class CFProperty; class CFGUID; - template<typename Cls, SizeT N> + template <typename Cls, SizeT N> class CFArray; /// @brief handle to anything (number, ptr, string...) @@ -36,18 +36,18 @@ namespace LibCF CFProperty& operator=(const CFProperty&) = default; CFProperty(const CFProperty&) = default; - Bool StringEquals(CFString& name); + Bool StringEquals(CFString& name); CFPropertyId& GetValue(); - CFString& GetKey(); + CFString& GetKey(); private: - CFString* fName{nullptr}; - CFPropertyId fValue{0UL}; - Ref<CFGUID> fGUID{}; + CFString* fName{nullptr}; + CFPropertyId fValue{0UL}; + Ref<CFGUID> fGUID{}; }; template <SizeT N> using CFPropertyArray = CFArray<CFProperty, N>; -} // namespace CFKit +} // namespace LibCF #endif // !CFKIT_PROPS_H |
