Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

21 lines
302 B
C++

#ifndef HWPRECORD_H
#define HWPRECORD_H
#include "HWPTag.h"
namespace HWP
{
class CHWPRecord
{
EHWPTag m_eTag;
int m_nLevel;
int m_nSize;
public:
CHWPRecord(int nTagNum, int nLevel, int nSize);
CHWPRecord(EHWPTag eTag, int nLevel, int nSize);
virtual ~CHWPRecord();
};
}
#endif // HWPRECORD_H