mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
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
|