Eclipse SUMO - Simulation of Urban MObility
SystemFrame.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
16 // A set of actions common to all applications
17 /****************************************************************************/
18 #ifndef SystemFrame_h
19 #define SystemFrame_h
20 
21 
22 // ===========================================================================
23 // included modules
24 // ===========================================================================
25 
26 
27 // ===========================================================================
28 // class declarations
29 // ===========================================================================
30 class OptionsCont;
31 
32 
33 // ===========================================================================
34 // class definitions
35 // ===========================================================================
50 class SystemFrame {
51 public:
57  static void addConfigurationOptions(OptionsCont& oc);
58 
59 
65  static void addReportOptions(OptionsCont& oc);
66 
68  static bool checkOptions();
69 
80  static void close();
81 
82 
83 };
84 
85 
86 #endif
87 
88 /****************************************************************************/
89 
static void addReportOptions(OptionsCont &oc)
Adds reporting options to the given container.
Definition: SystemFrame.cpp:65
static void close()
Closes all of an applications subsystems.
static void addConfigurationOptions(OptionsCont &oc)
Adds configuration options to the given container.
Definition: SystemFrame.cpp:40
A set of actions common to all applications.
Definition: SystemFrame.h:50
static bool checkOptions()
checks shared options and sets StdDefs
A storage for options typed value containers)
Definition: OptionsCont.h:90