Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/activitygen/AGFrame.h
169666 views
1
/****************************************************************************/
2
// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3
// Copyright (C) 2001-2025 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 are made available under the
7
// terms of the Eclipse Public License 2.0 which is available at
8
// https://www.eclipse.org/legal/epl-2.0/
9
// This Source Code may also be made available under the following Secondary
10
// Licenses when the conditions for such availability set forth in the Eclipse
11
// Public License 2.0 are satisfied: GNU General Public License, version 2
12
// or later which is available at
13
// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
14
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
15
/****************************************************************************/
16
/// @file AGFrame.h
17
/// @author Walter Bamberger
18
/// @author Daniel Krajzewicz
19
/// @date Mon, 13 Sept 2010
20
///
21
// Configuration of the options of ActivityGen
22
/****************************************************************************/
23
#pragma once
24
#include <config.h>
25
26
27
// ===========================================================================
28
// class definitions
29
// ===========================================================================
30
/**
31
* @class AGFrame
32
* @brief Sets and checks options for ActivityGen
33
*/
34
class AGFrame {
35
public:
36
/** @brief Inserts options used by ActivityGen into the OptionsCont singleton
37
*/
38
static void fillOptions();
39
40
41
/** @brief Checks set options from the OptionsCont singleton for being valid
42
* for usage within ActivityGen
43
*
44
* @return Whether all needed options are set
45
* @todo Not implemented yet
46
*/
47
static bool checkOptions();
48
49
};
50
51