HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5_definitions.hpp
Go to the documentation of this file.
1#pragma once
2
3#if defined(__GNUC__) || defined(__clang__)
4#define H5_DEPRECATED(msg) __attribute__((deprecated(#msg)))
5#elif defined(_MSC_VER)
6#define H5_DEPRECATED(msg) __declspec(deprecated(#msg))
7#else
8#pragma message("WARNING: Compiler doesn't support deprecation")
9#define H5_DEPRECATED(msg)
10#endif
11
12#if defined(__GNUC__) || defined(__clang__)
13#define H5_DEPRECATED_USING(msg) H5_DEPRECATED((msg))
14#else
15#pragma message("WARNING: Compiler doesn't support deprecating using statements.")
16#define H5_DEPRECATED_USING(msg)
17#endif
18
19
20// Forward declarations
21
22namespace HighFive {
23
24enum class LinkType;
25enum class ObjectType;
26enum class PropertyType;
27
28class Attribute;
29class DataSet;
30class DataSpace;
31class DataType;
32class Exception;
33class File;
34class FileDriver;
35class Group;
36class Object;
37class ObjectInfo;
38class Reference;
39class Selection;
40class SilenceHDF5;
41
42template <typename T>
43class AtomicType;
44
45template <typename Derivate>
46class AnnotateTraits;
47
48template <typename Derivate>
49class NodeTraits;
50
51template <PropertyType T>
52class PropertyList;
53
54} // namespace HighFive
PropertyType
Types of property lists.
Definition H5PropertyList.hpp:89
Definition assert_compatible_spaces.hpp:15
LinkType
The possible types of group entries (link concept)
Definition H5Node_traits.hpp:226
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24