/****************************************************************************/1// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo2// Copyright (C) 2001-2025 German Aerospace Center (DLR) and others.3// activitygen module4// Copyright 2010 TUM (Technische Universitaet Muenchen, http://www.tum.de/)5// This program and the accompanying materials are made available under the6// terms of the Eclipse Public License 2.0 which is available at7// https://www.eclipse.org/legal/epl-2.0/8// This Source Code may also be made available under the following Secondary9// Licenses when the conditions for such availability set forth in the Eclipse10// Public License 2.0 are satisfied: GNU General Public License, version 211// or later which is available at12// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html13// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later14/****************************************************************************/15/// @file AGFrame.h16/// @author Walter Bamberger17/// @author Daniel Krajzewicz18/// @date Mon, 13 Sept 201019///20// Configuration of the options of ActivityGen21/****************************************************************************/22#pragma once23#include <config.h>242526// ===========================================================================27// class definitions28// ===========================================================================29/**30* @class AGFrame31* @brief Sets and checks options for ActivityGen32*/33class AGFrame {34public:35/** @brief Inserts options used by ActivityGen into the OptionsCont singleton36*/37static void fillOptions();383940/** @brief Checks set options from the OptionsCont singleton for being valid41* for usage within ActivityGen42*43* @return Whether all needed options are set44* @todo Not implemented yet45*/46static bool checkOptions();4748};495051