1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2012 - Scilab Enterprises - Calixte DENIZET
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
*
*/
#ifndef __H5ATTRIBUTES_HXX__
#define __H5ATTRIBUTES_HXX__
#include "H5Object.hxx"
#include "H5Type.hxx"
#include "H5Data.hxx"
#include "H5Dataspace.hxx"
#include "H5File.hxx"
namespace org_modules_hdf5
{
class H5Attribute : public H5Object
{
hid_t attr;
public :
H5Attribute(H5Object & _parent, const std::string & name);
H5Attribute(H5Object & _parent, hid_t _attr, const std::string & _name);
virtual ~H5Attribute();
virtual hid_t getH5Id() const
{
return attr;
}
virtual bool isAttribute() const
{
return true;
}
H5Data & getData();
H5Type & getDataType();
H5Dataspace & getSpace();
virtual void copy(H5Object & parent, const std::string & name);
virtual void getAccessibleAttribute(const std::string & _name, const int pos, void * pvApiCtx) const;
virtual std::string dump(std::map<haddr_t, std::string> & alreadyVisited, const unsigned int indentLevel) const;
virtual std::string toString(const unsigned int indentLevel) const;
static hid_t create(const hid_t loc, const std::string & name, const hid_t type, const hid_t targettype, const hid_t srcspace, const hid_t targetspace, void * data);
static hid_t create(H5Object & loc, const std::string & name, const hid_t type, const hid_t targettype, const hid_t srcspace, const hid_t targetspace, void * data, const bool chunked = false);
static void copy(const hid_t src, const hid_t dest, const std::string & name);
};
}
#endif // __H5ATTRIBUTE_HXX__
|