static void DisposeVector(std::vector<T*>& listofthings)
static void DisposeVector(std::vector<const T*>& listofthings)
Description
Disposes of a vector of GeoBase objects, such as the one returned by the ChangeLog::get_AllChanges method.
Example
std::vector<const Change*> changes = customLog->get_AllChanges();
Disposal::DisposeVector(changes);
Comments
0 comments
Please sign in to leave a comment.