Eclipse SUMO - Simulation of Urban MObility
ROFrame.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 // Sets and checks options for routing
17 /****************************************************************************/
18 #ifndef ROFrame_h
19 #define ROFrame_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 // ===========================================================================
43 class ROFrame {
44 public:
48  static void fillOptions(OptionsCont& oc);
49 
50 
61  static bool checkOptions(OptionsCont& oc);
62 
63 };
64 
65 
66 #endif
67 
68 /****************************************************************************/
69 
static void fillOptions(OptionsCont &oc)
Inserts options used by routing applications into the OptionsCont-singleton.
Definition: ROFrame.cpp:43
Sets and checks options for routing.
Definition: ROFrame.h:43
static bool checkOptions(OptionsCont &oc)
Checks whether options are valid.
Definition: ROFrame.cpp:170
A storage for options typed value containers)
Definition: OptionsCont.h:90