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

26 lines
545 B
C++

#ifndef CHARSHAPE_H
#define CHARSHAPE_H
#include "../HWPStream.h"
#include "Ctrl.h"
namespace HWP
{
class CCharShape
{
int m_nStart;
int m_nCharShapeID;
public:
CCharShape();
CCharShape(int nStart, int nID);
int GetStart() const;
int GetCharShapeID() const;
static VECTOR<CCharShape*> Parse(int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
static int FillCharShape(int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion, VECTOR<CCtrl*>& arParas);
};
}
#endif // CHARSHAPE_H