SUMO - Simulation of Urban MObility
|
00001 /****************************************************************************/ 00009 // A list of object types which may be displayed within the gui 00010 // each type has an associated string which will be prefefixed to an object id 00011 // when constructing the full name 00012 /****************************************************************************/ 00013 // SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/ 00014 // Copyright (C) 2001-2012 DLR (http://www.dlr.de/) and contributors 00015 /****************************************************************************/ 00016 // 00017 // This file is part of SUMO. 00018 // SUMO is free software: you can redistribute it and/or modify 00019 // it under the terms of the GNU General Public License as published by 00020 // the Free Software Foundation, either version 3 of the License, or 00021 // (at your option) any later version. 00022 // 00023 /****************************************************************************/ 00024 #ifndef GUIGlObjectTypes_h 00025 #define GUIGlObjectTypes_h 00026 00027 00028 // =========================================================================== 00029 // included modules 00030 // =========================================================================== 00031 #ifdef _MSC_VER 00032 #include <windows_config.h> 00033 #else 00034 #include <config.h> 00035 #endif 00036 00037 00038 // =========================================================================== 00039 // definitions 00040 // =========================================================================== 00047 enum GUIGlObjectType { 00049 GLO_NETWORK = 0, 00051 GLO_EDGE = 1, 00053 GLO_LANE = 2, 00055 GLO_JUNCTION = 4, 00057 GLO_TLLOGIC = 8, 00059 GLO_DETECTOR = 16, 00061 GLO_TRIGGER = 64, 00063 GLO_SHAPE = 128, 00065 GLO_VEHICLE = 256, 00067 GLO_ADDITIONAL = GLO_DETECTOR | GLO_TRIGGER, 00069 GLO_MAX = 512 00070 00071 }; 00072 00073 #endif 00074 00075 /****************************************************************************/