Files
core/ASCOfficeDocFile/DocDocxConverter/FormattedDiskPage.h
Elen.Subbotina 0c289e39c9 linux пути к pole
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62408 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:01:08 +03:00

37 lines
820 B
C++

#pragma once
#include "../../Common/3dParty/pole/pole.h"
#include "../../DesktopEditor/common/Types.h"
namespace DocFileFormat
{
typedef enum FKPType
{
Character,
Paragraph
} FKPType;
class FormattedDiskPage
{
friend class FormattedDiskPageCHPX;
friend class FormattedDiskPagePAPX;
friend class WordDocument;
private:
/// Specifies the type of the FKP
FKPType Type;
/// The WordDocument stream
POLE::Stream* WordStream;
/// Count of runs for that FKP
unsigned char crun;
/// Each value is the limit of a paragraph or run of exception text
int* rgfc;
unsigned int rgfcSize;
public:
FormattedDiskPage(): Type(Character), WordStream(NULL), crun(0), rgfc(NULL), rgfcSize(0)
{
}
};
}