blob: cdb72e5165e7e5ec8d26d13cf22f696e899554bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* ========================================================
*
* HCore
* Copyright Mahrouss Logic, all rights reserved.
*
* ========================================================
*/
#include <CFKit/Property.hpp>
namespace HCore {
bool Property::StringEquals(StringView& name) {
return m_sName && this->m_sName == name;
}
const PropertyId& Property::GetPropertyById() { return m_Action; }
} // namespace HCore
|