#include "../include/base.h"
#include "../object/physical_obj.h"
#include <list>
Include dependency graph for objects_list.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Classes | |
class | ObjectsList |
Defines | |
#define | FOR_ALL_OBJECTS(object) |
#define | FOR_EACH_OBJECT(object) |
Variables | |
ObjectsList | lst_objects |
#define FOR_ALL_OBJECTS | ( | object | ) |
Value:
for (ObjectsList::iterator object=lst_objects.begin(), \ end=lst_objects.end(); \ object != end; \ ++object)
Definition at line 31 of file objects_list.h.
#define FOR_EACH_OBJECT | ( | object | ) |
Value:
FOR_ALL_OBJECTS(object) \ if (!(*object)->IsGhost())
Definition at line 40 of file objects_list.h.
Definition at line 39 of file objects_list.cpp.