27 lines
331 B
C++
27 lines
331 B
C++
/**
|
|
* @file HMT.h
|
|
* @date 15/09/2022
|
|
* @author JackCarterSmith
|
|
* @copyright GPL-v3.0
|
|
* @brief HMT file object class.
|
|
*
|
|
*/
|
|
|
|
#include <FileHandler/Generic.h>
|
|
|
|
|
|
#ifndef HMT_H_
|
|
#define HMT_H_
|
|
|
|
namespace RDI {
|
|
|
|
class HMT : public GenericFile {
|
|
public:
|
|
HMT( ErsoEntryFile& hDat );
|
|
virtual ~HMT();
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* HMT_H_ */
|