[C++]C++ Nativated Property Code Snippet
#pragma region Public Property public: declspec(property(get=Get$field$,put=Set$field$)) $type$ m_$field$; #pragma endregion
#pragma region Property Process Method public: inline $type$ Get_$field$() { return _$field$; }
inline void Set_$field$($type$ value)
{
if(_$field$ == value)
return;
_$field$ = value;
}
#pragma endregion]]></Code> </Snippet> </CodeSnippet> </CodeSnippets>