SUMO - Simulation of Urban MObility
MSFrame.h
Go to the documentation of this file.
1 /****************************************************************************/
8 // Sets and checks options for microsim; inits global outputs and settings
9 /****************************************************************************/
10 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
11 // Copyright (C) 2001-2015 DLR (http://www.dlr.de/) and contributors
12 /****************************************************************************/
13 //
14 // This file is part of SUMO.
15 // SUMO is free software: you can redistribute it and/or modify
16 // it under the terms of the GNU General Public License as published by
17 // the Free Software Foundation, either version 3 of the License, or
18 // (at your option) any later version.
19 //
20 /****************************************************************************/
21 #ifndef MSFrame_h
22 #define MSFrame_h
23 
24 
25 // ===========================================================================
26 // included modules
27 // ===========================================================================
28 #ifdef _MSC_VER
29 #include <windows_config.h>
30 #else
31 #include <config.h>
32 #endif
33 
34 
35 // ===========================================================================
36 // class declarations
37 // ===========================================================================
38 class OptionsCont;
39 class MSNet;
40 class OutputDevice;
41 
42 
43 // ===========================================================================
44 // class definitions
45 // ===========================================================================
57 class MSFrame {
58 public:
64  static void fillOptions();
65 
66 
68  static void buildStreams();
69 
70 
83  static bool checkOptions();
84 
85 
91  static void setMSGlobals(OptionsCont& oc);
92 
93 };
94 
95 
96 #endif
97 
98 /****************************************************************************/
99 
static void buildStreams()
Builds the streams used possibly by the simulation.
Definition: MSFrame.cpp:375
The simulated network and simulation perfomer.
Definition: MSNet.h:94
static void fillOptions()
Inserts options used by the simulation into the OptionsCont-singleton.
Definition: MSFrame.cpp:69
Sets and checks options for microsim; inits global outputs and settings.
Definition: MSFrame.h:57
static bool checkOptions()
Checks the set options.
Definition: MSFrame.cpp:401
A storage for options typed value containers)
Definition: OptionsCont.h:108
Static storage of an output device and its base (abstract) implementation.
Definition: OutputDevice.h:71
static void setMSGlobals(OptionsCont &oc)
Sets the global microsim-options.
Definition: MSFrame.cpp:460