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-2018 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 #include <config.h>
26 
27 
28 // ===========================================================================
29 // class declarations
30 // ===========================================================================
31 class OptionsCont;
32 
33 
34 // ===========================================================================
35 // class definitions
36 // ===========================================================================
51 class SystemFrame {
52 public:
58  static void addConfigurationOptions(OptionsCont& oc);
59 
60 
66  static void addReportOptions(OptionsCont& oc);
67 
69  static bool checkOptions();
70 
81  static void close();
82 
83 
84 };
85 
86 
87 #endif
88 
89 /****************************************************************************/
90 
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:51
static bool checkOptions()
checks shared options and sets StdDefs
A storage for options typed value containers)
Definition: OptionsCont.h:92