mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 01:43:39 +08:00
18 lines
238 B
C++
18 lines
238 B
C++
#ifndef CELLPARAGRAPH_H
|
|
#define CELLPARAGRAPH_H
|
|
|
|
#include "HWPPargraph.h"
|
|
|
|
namespace HWP
|
|
{
|
|
class CCellParagraph : public CHWPPargraph
|
|
{
|
|
public:
|
|
CCellParagraph();
|
|
|
|
EParagraphType GetType() const override;
|
|
};
|
|
}
|
|
|
|
#endif // CELLPARAGRAPH_H
|