19 lines
292 B
C++
19 lines
292 B
C++
#ifndef CELLPARAGRAPH_H
|
|
#define CELLPARAGRAPH_H
|
|
|
|
#include "HWPPargraph.h"
|
|
|
|
namespace HWP
|
|
{
|
|
class CCellParagraph : public CHWPPargraph
|
|
{
|
|
public:
|
|
CCellParagraph();
|
|
CCellParagraph(CXMLReader& oReader, EHanType eType);
|
|
|
|
EParagraphType GetType() const override;
|
|
};
|
|
}
|
|
|
|
#endif // CELLPARAGRAPH_H
|