Eclipse 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-2019 German Aerospace Center (DLR) and others.
4 // activitygen module
5 // Copyright 2010 TUM (Technische Universitaet Muenchen, http://www.tum.de/)
6 // This program and the accompanying materials
7 // are made available under the terms of the Eclipse Public License v2.0
8 // which accompanies this distribution, and is available at
9 // http://www.eclipse.org/legal/epl-v20.html
10 // SPDX-License-Identifier: EPL-2.0
11 /****************************************************************************/
18 // Configuration of the options of ActivityGen
19 /****************************************************************************/
20 #ifndef AGFRAME_H
21 #define AGFRAME_H
22 
23 
24 // ===========================================================================
25 // included modules
26 // ===========================================================================
27 #include <config.h>
28 
29 
30 // ===========================================================================
31 // class definitions
32 // ===========================================================================
37 class AGFrame {
38 public:
41  static void fillOptions();
42 
43 
50  static bool checkOptions();
51 
52 };
53 
54 #endif /* AGFRAME_H */
Sets and checks options for ActivityGen.
Definition: AGFrame.h:37
static bool checkOptions()
Checks set options from the OptionsCont singleton for being valid for usage within ActivityGen...
Definition: AGFrame.cpp:91
static void fillOptions()
Inserts options used by ActivityGen into the OptionsCont singleton.
Definition: AGFrame.cpp:45