Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
common.h 864 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_COMMON_H
#define MAPSDK_MAPAPI_COMMON_COMMON_H

#include <functional>

#include "base_properties.h"
#include "external_reference.h"
#include "geometry.h"
#include "identifier.h"

namespace map_api
{

template <typename T>
using RefWrapper = std::reference_wrapper<T>;

}  // namespace map_api

#endif  // MAPSDK_MAPAPI_COMMON_COMMON_H