h5cpp  0.6
A modern C++ wrapper for the HDF5 C library
link_access.hpp
Go to the documentation of this file.
1 //
2 // (c) Copyright 2017 DESY,ESS
3 //
4 // This file is part of h5cpp.
5 //
6 // This library is free software; you can redistribute it and/or modify it
7 // under the terms of the GNU Lesser General Public License as published
8 // by the Free Software Foundation; either version 2.1 of the License, or
9 // (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY
13 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14 // License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public License
17 // along with this library; if not, write to the
18 // Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor
19 // Boston, MA 02110-1301 USA
20 // ===========================================================================
21 //
22 // Authors:
23 // Eugen Wintersberger <eugen.wintersberger@desy.de>
24 // Martin Shetty <martin.shetty@esss.se>
25 // Created on: Aug 18, 2017
26 //
27 #pragma once
28 
31 #include <h5cpp/core/windows.hpp>
32 
33 namespace hdf5 {
34 namespace property {
35 
36 #ifdef __clang__
37 #pragma clang diagnostic push
38 #pragma clang diagnostic ignored "-Wweak-vtables"
39 #endif
43 class DLL_EXPORT LinkAccessList : public List {
44  public:
49 
50  explicit LinkAccessList(ObjectHandle &&handle);
51 
55  size_t maximum_link_traversals() const;
56 
60  void maximum_link_traversals(size_t size) const;
61 
70  fs::path external_link_prefix() const;
71 
83  void external_link_prefix(const fs::path &path);
84 
85  protected:
91  LinkAccessList(const Class &plist_class);
92  private:
93 
97 #ifdef _MSC_VER
98 #pragma warning(push)
99 #pragma warning(disable:4251)
100 #endif
101  std::string elink_prefix_;
102 #ifdef _MSC_VER
103 #pragma warning(pop)
104 #endif
105 };
106 
107 #ifdef __clang__
108 #pragma clang diagnostic pop
109 #endif
110 
111 } // namespace property
112 } // namespace hdf5
Wrapper for hid_t object identifiers.
Definition: object_handle.hpp:67
property list class
Definition: property_class.hpp:45
link access property list
Definition: link_access.hpp:43
LinkAccessList(const Class &plist_class)
constructor
fs::path external_link_prefix() const
get external link prefix
size_t maximum_link_traversals() const
get maximum number of link traversals
void maximum_link_traversals(size_t size) const
set maximum number of link traversals
void external_link_prefix(const fs::path &path)
set external link prefix
LinkAccessList()
default constructor
LinkAccessList(ObjectHandle &&handle)
base class for property lists
Definition: property_list.hpp:54
top-level namespace of the entire library
Definition: attribute.hpp:45
#define DLL_EXPORT
Definition: windows.hpp:29