Ocean
Loading...
Searching...
No Matches
io/maps/rendering/Rendering.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#ifndef META_OCEAN_IO_MAPS_RENDERING_RENDERING_H
9#define META_OCEAN_IO_MAPS_RENDERING_RENDERING_H
10
11#include "ocean/io/maps/Maps.h"
12
13namespace Ocean
14{
15
16namespace IO
17{
18
19namespace Maps
20{
21
22namespace Rendering
23{
24
25/**
26 * @ingroup iomaps
27 * @defgroup iomapsrendering Ocean IO Maps Rendering Library
28 * @{
29 * The Ocean IO Maps Rendering Library provides functions to render maps.
30 * The library is platform independent.
31 * @}
32 */
33
34/**
35 * @namespace Ocean::IO::Maps::Rendering Namespace of the Ocean IO Maps Rendering library<p>
36 * The Namespace Ocean::IO::Maps::Rendering is used in the entire IO Ocean Maps Rendering library.
37 */
38
39// Defines OCEAN_IO_MAPS_RENDERING_EXPORT for dll export and import.
40#if defined(_WINDOWS) && defined(OCEAN_RUNTIME_SHARED)
41 #ifdef USE_OCEAN_IO_MAPS_RENDERING_EXPORT
42 #define OCEAN_IO_MAPS_RENDERING_EXPORT __declspec(dllexport)
43 #else
44 #define OCEAN_IO_MAPS_RENDERING_EXPORT __declspec(dllimport)
45 #endif
46#else
47 #define OCEAN_IO_MAPS_RENDERING_EXPORT
48#endif
49
50}
51
52}
53
54}
55
56}
57
58#endif // META_OCEAN_IO_MAPS_RENDERING_RENDERING_H
The namespace covering the entire Ocean framework.
Definition Accessor.h:15