Hdf4File.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HDF4FILE_H
00011 #define HDF4FILE_H
00012
00013 #include <string>
00014 #include <vector>
00015
00016 #include "Hdf4Element.h"
00017
00018 class Hdf4Dataset;
00019 class Hdf4Group;
00020
00021
00022
00023
00024
00025 class Hdf4File : public Hdf4Element
00026 {
00027 public:
00028
00029
00030
00031
00032
00033
00034 explicit Hdf4File(const std::string& name);
00035
00036
00037
00038
00039 ~Hdf4File();
00040
00041
00042
00043
00044
00045
00046 virtual Hdf4Group* getRootGroup() const;
00047
00048 private:
00049 const Hdf4Dataset* mpActiveDataset;
00050 Hdf4Group* mpRootGroup;
00051 };
00052
00053 #endif