h5geo 0.4.0
C++17 and python API to work with geo-data (seismic, wells, maps, other in process) based on HDF5. Aimed at geoscientists and developers.
Loading...
Searching...
No Matches
h5volcontainerimpl.h
1#ifndef H5VOLCONTAINERIMPL_H
2#define H5VOLCONTAINERIMPL_H
3
4#include "../h5volcontainer.h"
5#include "h5basecontainerimpl.h"
6
7class H5VolContainerImpl : public H5BaseContainerImpl<H5VolContainer>
8{
9protected:
10 explicit H5VolContainerImpl(const h5gt::File &h5File);
11 virtual ~H5VolContainerImpl() = default;
12
13public:
14 virtual H5Vol* openVol(
15 const std::string& name) override;
16 virtual H5Vol* openVol(
17 h5gt::Group group) override;
18 virtual H5Vol* createVol(
19 std::string& name,
20 H5VolParam& p,
21 h5geo::CreationType createFlag) override;
22 virtual H5Vol* createVol(
23 h5gt::Group group,
24 H5VolParam& p,
25 h5geo::CreationType createFlag) override;
26
27 //----------- FRIEND CLASSES -----------
30 h5gt::File h5File, h5geo::CreationType createFlag);
32 std::string& fileName, h5geo::CreationType createFlag);
34 h5gt::File h5File);
35};
36
37#endif // H5VOLCONTAINERIMPL_H
Definition h5basecontainerimpl.h:11
A container built around HDF5 file and used for storing and manipulating H5Vol objects.
Definition h5volcontainer.h:15
Definition h5volcontainerimpl.h:8
virtual H5Vol * openVol(const std::string &name) override
Open H5Vol.
Definition h5volcontainerimpl.cpp:12
virtual H5Vol * createVol(std::string &name, H5VolParam &p, h5geo::CreationType createFlag) override
Create H5Vol.
Definition h5volcontainerimpl.cpp:27
Provides API to work with volumes.
Definition h5vol.h:15
H5GEO_EXPORT H5VolContainer * createVolContainer(h5gt::File h5File, h5geo::CreationType createFlag)
Factory function for creating H5VolContainer.
Definition h5baseimpl.cpp:1856
H5GEO_EXPORT H5VolContainer * openVolContainer(h5gt::File h5File)
Factory function for opening H5VolContainer.
Definition h5baseimpl.cpp:1879
CreationType
Definition h5enum.h:468
H5GEO_EXPORT H5VolContainer * createVolContainerByName(std::string &fileName, h5geo::CreationType createFlag)
Factory function for creating H5VolContainer.
Definition h5baseimpl.cpp:1868
Class for creating H5Vol.
Definition h5base.h:116