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