SUMO - Simulation of Urban MObility
AGFrame.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-2017 German Aerospace Center (DLR) and others.
4 // activitygen module
5 // Copyright 2010 TUM (Technische Universitaet Muenchen, http://www.tum.de/)
6 /****************************************************************************/
7 //
8 // This program and the accompanying materials
9 // are made available under the terms of the Eclipse Public License v2.0
10 // which accompanies this distribution, and is available at
11 // http://www.eclipse.org/legal/epl-v20.html
12 //
13 /****************************************************************************/
20 // Configuration of the options of ActivityGen
21 /****************************************************************************/
22 #ifndef AGFRAME_H
23 #define AGFRAME_H
24 
25 
26 // ===========================================================================
27 // included modules
28 // ===========================================================================
29 #ifdef _MSC_VER
30 #include <windows_config.h>
31 #else
32 #include <config.h>
33 #endif
34 
35 
36 // ===========================================================================
37 // class definitions
38 // ===========================================================================
43 class AGFrame {
44 public:
47  static void fillOptions();
48 
49 
56  static bool checkOptions();
57 
58 };
59 
60 #endif /* AGFRAME_H */
Sets and checks options for ActivityGen.
Definition: AGFrame.h:43
static bool checkOptions()
Checks set options from the OptionsCont singleton for being valid for usage within ActivityGen...
Definition: AGFrame.cpp:97
static void fillOptions()
Inserts options used by ActivityGen into the OptionsCont singleton.
Definition: AGFrame.cpp:51