Commit cc450851 authored by Alexey.Musinov's avatar Alexey.Musinov

up

parent 2808a834
......@@ -140,6 +140,16 @@ namespace NSEditorApi
{ \
m_s##memberName = newVal; \
}
#define LINK_PROPERTY_OBJECT(objectType, memberName) \
inline objectType& get_##memberName() \
{ \
return m_o##memberName; \
} \
inline void put_##memberName(const objectType& newVal) \
{ \
m_o##memberName = newVal; \
}
// JS
#define LINK_PROPERTY_INT_JS(memberName) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment