comparison Framework/Scene2D/Scene2D.cpp @ 942:685c9a2d115f

Added missing ORTHANC_OVERRIDE + preparation for lost GL context handling + stubs for GL context event handlers
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 05 Aug 2019 12:27:27 +0200
parents 094d10ed7ec2
children a7351ad54960
comparison
equal deleted inserted replaced
939:ab90628e70d9 942:685c9a2d115f
197 content_.erase(found); 197 content_.erase(found);
198 198
199 return layer.release(); 199 return layer.release();
200 } 200 }
201 } 201 }
202 202
203
204 void Scene2D::Apply(IVisitor& visitor) const 203 void Scene2D::Apply(IVisitor& visitor) const
205 { 204 {
206 for (Content::const_iterator it = content_.begin(); 205 for (Content::const_iterator it = content_.begin();
207 it != content_.end(); ++it) 206 it != content_.end(); ++it)
208 { 207 {