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

Method Clean

code/Common/BaseProcess.h:103–110  ·  view source on GitHub ↗

Remove all stored properties from the table

Source from the content-addressed store, hash-verified

101
102 //! Remove all stored properties from the table
103 void Clean() {
104 // invoke the virtual destructor for all stored properties
105 for (PropertyMap::iterator it = pmap.begin(), end = pmap.end();
106 it != end; ++it) {
107 delete (*it).second;
108 }
109 pmap.clear();
110 }
111
112 //! Add a heap property to the list
113 template <typename T>

Callers 3

ReadFileMethod · 0.80
ApplyPostProcessingMethod · 0.80

Calls 3

beginMethod · 0.45
endMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected