Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
external_reference.h 850 B
/*******************************************************************************
 * Copyright (c) 2023, Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
 * Copyright (C) 2023, ANSYS, Inc.
 *
 * 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
 *******************************************************************************/

#ifndef MAPSDK_MAPAPI_COMMON_EXTERNALREFERENCE_H
#define MAPSDK_MAPAPI_COMMON_EXTERNALREFERENCE_H

#include <string>
#include <vector>

namespace map_api
{

struct ExternalReference
{
  std::string reference;
  std::string type;
  std::vector<std::string> identifiers;
};

}  // namespace map_api

#endif  // MAPSDK_MAPAPI_COMMON_EXTERNALREFERENCE_H