Newer
Older
/*******************************************************************************
* Copyright (c) 2021-2023, Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
//-----------------------------------------------------------------------------
/** @file scenario_info.h */
//-----------------------------------------------------------------------------
#ifndef MANTLEAPI_EXECUTION_SCENARIO_INFO_H
#define MANTLEAPI_EXECUTION_SCENARIO_INFO_H
Arun Das
committed
#include <MantleAPI/Common/time_utils.h>
#include <map>
#include <string>
namespace mantle_api
{
/// Information about the scenario
/// Duration of the scenario timeout
/// Specific description of the scenario
/// Absolute path to the map
std::string full_map_path;
/// Definition of the map area
MapDetails map_details;
/// Additional custom information about the scenario
std::map<std::string, std::string> additional_information;
#endif // MANTLEAPI_EXECUTION_SCENARIO_INFO_H