SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GUIGlObjectTypes.h
Go to the documentation of this file.
1 /****************************************************************************/
9 // A list of object types which may be displayed within the gui
10 // each type has an associated string which will be prefefixed to an object id
11 // when constructing the full name
12 /****************************************************************************/
13 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/
14 // Copyright (C) 2001-2012 DLR (http://www.dlr.de/) and contributors
15 /****************************************************************************/
16 //
17 // This file is part of SUMO.
18 // SUMO is free software: you can redistribute it and/or modify
19 // it under the terms of the GNU General Public License as published by
20 // the Free Software Foundation, either version 3 of the License, or
21 // (at your option) any later version.
22 //
23 /****************************************************************************/
24 #ifndef GUIGlObjectTypes_h
25 #define GUIGlObjectTypes_h
26 
27 
28 // ===========================================================================
29 // included modules
30 // ===========================================================================
31 #ifdef _MSC_VER
32 #include <windows_config.h>
33 #else
34 #include <config.h>
35 #endif
36 
37 
38 // ===========================================================================
39 // definitions
40 // ===========================================================================
51  GLO_EDGE = 1,
53  GLO_LANE = 2,
63  GLO_SHAPE = 128,
65  GLO_VEHICLE = 256,
69  GLO_MAX = 512
70 
71 };
72 
73 #endif
74 
75 /****************************************************************************/