Skip to content
Snippets Groups Projects
scenario_info.h 1.04 KiB
Newer Older
Arun Das's avatar
Arun Das committed
/*******************************************************************************
Arun Das's avatar
Arun Das committed
 * Copyright (c) 2021, 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
 *******************************************************************************/
Arun Das's avatar
Arun Das committed

//-----------------------------------------------------------------------------
/** @file  scenario_info.h */
//-----------------------------------------------------------------------------

#ifndef MANTLEAPI_EXECUTION_SCENARIO_INFO_H
#define MANTLEAPI_EXECUTION_SCENARIO_INFO_H
Arun Das's avatar
Arun Das committed

Arun Das's avatar
Arun Das committed

#include <map>
#include <string>

namespace mantle_api
{
struct ScenarioInfo
{
  Time scenario_timeout_duration;
  std::string description;
  std::map<std::string, std::string> additional_information;
Arun Das's avatar
Arun Das committed
};

}  // namespace mantle_api

#endif  // MANTLEAPI_EXECUTION_SCENARIO_INFO_H