mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@67398 954022d7-b5bf-4e40-9824-e11837661b57
31 lines
676 B
C++
31 lines
676 B
C++
#pragma once
|
|
|
|
#include "PropertyExceptions.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class SectionPropertyExceptions: public PropertyExceptions
|
|
{
|
|
public:
|
|
/// Parses the bytes to retrieve a SectionPropertyExceptions
|
|
SectionPropertyExceptions( unsigned char* bytes, int size ):
|
|
PropertyExceptions( bytes, size ), isBidi(false)
|
|
{
|
|
for ( list<SinglePropertyModifier>::iterator iter = this->grpprl->begin(); iter != this->grpprl->end(); iter++ )
|
|
{
|
|
SinglePropertyModifier sprm( *iter );
|
|
|
|
if( sprm.OpCode == sprmSFBiDi )
|
|
{
|
|
isBidi = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
virtual ~SectionPropertyExceptions()
|
|
{
|
|
}
|
|
|
|
bool isBidi;
|
|
};
|
|
} |