comparison Framework/Scene2D/Scene2D.cpp @ 600:6129b1e5ba42

BasicScene SDL sample
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 27 Apr 2019 12:38:25 +0200
parents e36e69a380a5
children 03c4b998fcd0
comparison
equal deleted inserted replaced
599:6da17230c7a3 600:6129b1e5ba42
85 content_.erase(found); 85 content_.erase(found);
86 } 86 }
87 } 87 }
88 88
89 89
90 void Scene2D::Apply(IVisitor& visitor) 90 void Scene2D::Apply(IVisitor& visitor) const
91 { 91 {
92 for (Content::const_iterator it = content_.begin(); 92 for (Content::const_iterator it = content_.begin();
93 it != content_.end(); ++it) 93 it != content_.end(); ++it)
94 { 94 {
95 assert(it->second != NULL); 95 assert(it->second != NULL);