Doc format refactored

x2t compiled.
This commit is contained in:
Vikulov Dmitry
2022-12-07 15:00:36 +03:00
parent 24fc302a32
commit a280d5822c
159 changed files with 10004 additions and 6772 deletions

View File

@ -34,6 +34,17 @@
namespace DocFileFormat
{
ParagraphPropertyExceptions::ParagraphPropertyExceptions() : PropertyExceptions(), istd(0)
{
}
ParagraphPropertyExceptions::ParagraphPropertyExceptions( const std::list<SinglePropertyModifier>& grpprl ):
PropertyExceptions( grpprl ), istd(0)
{
}
ParagraphPropertyExceptions::~ParagraphPropertyExceptions()
{
}
ParagraphPropertyExceptions::ParagraphPropertyExceptions( unsigned char* bytes, int size, POLE::Stream* dataStream, int nWordVersion):
PropertyExceptions( ( bytes + 2 ), ( size - 2 ), nWordVersion)
{