Moved stuff from the window class to the window decorator.
[fail.git] / scenegraph / group.cpp
blob020bc9e0ebf15ca7ddb53a50e470f4d00fa5c60f
1 //
2 // group
3 //
4 // Description:
5 //
6 //
7 // Author: Antoine Chavasse <a.chavasse@gmail.com>, (C) 2005
8 //
9 // Copyright: See COPYING file that comes with this distribution
12 #include "group.h"
14 using namespace sluggish;
16 void Group::eval()
18 iterator it;
19 for( it = begin(); it != end(); ++it )
20 ( *it )->eval();