MCPcopy Create free account
hub / github.com/assimp/assimp / GetProperty

Method GetProperty

code/Common/BaseProcess.h:126–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124 //! Get a heap property
125 template <typename T>
126 bool GetProperty(const char *name, T *&out) const {
127 THeapData<T> *t = (THeapData<T> *)GetPropertyInternal(name);
128 if (!t) {
129 out = nullptr;
130 return false;
131 }
132 out = t->data;
133 return true;
134 }
135
136 //! Get a static, by-value property
137 template <typename T>

Callers 12

IsPropertyAttributeFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
CopyMethod · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
CopyMethod · 0.80
TEST_FFunction · 0.80
ProcessMeshMethod · 0.80
GenMeshVertexNormalsMethod · 0.80

Calls

no outgoing calls

Tested by 5

TESTFunction · 0.64
TESTFunction · 0.64
TESTFunction · 0.64
TESTFunction · 0.64