SUMO - Simulation of Urban MObility
AGFrame.h
Go to the documentation of this file.
1 /****************************************************************************/
8 // Configuration of the options of ActivityGen
9 /****************************************************************************/
10 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
11 // Copyright (C) 2001-2016 DLR (http://www.dlr.de/) and contributors
12 // activitygen module
13 // Copyright 2010 TUM (Technische Universitaet Muenchen, http://www.tum.de/)
14 /****************************************************************************/
15 //
16 // This file is part of SUMO.
17 // SUMO is free software: you can redistribute it and/or modify
18 // it under the terms of the GNU General Public License as published by
19 // the Free Software Foundation, either version 3 of the License, or
20 // (at your option) any later version.
21 //
22 /****************************************************************************/
23 #ifndef AGFRAME_H
24 #define AGFRAME_H
25 
26 
27 // ===========================================================================
28 // included modules
29 // ===========================================================================
30 #ifdef _MSC_VER
31 #include <windows_config.h>
32 #else
33 #include <config.h>
34 #endif
35 
36 
37 // ===========================================================================
38 // class definitions
39 // ===========================================================================
44 class AGFrame {
45 public:
48  static void fillOptions();
49 
50 
57  static bool checkOptions();
58 
59 };
60 
61 #endif /* AGFRAME_H */
Sets and checks options for ActivityGen.
Definition: AGFrame.h:44
static bool checkOptions()
Checks set options from the OptionsCont singleton for being valid for usage within ActivityGen...
Definition: AGFrame.cpp:98
static void fillOptions()
Inserts options used by ActivityGen into the OptionsCont singleton.
Definition: AGFrame.cpp:52