mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
21 lines
493 B
C++
21 lines
493 B
C++
#pragma once
|
|
|
|
#include "PropertyExceptions.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class CharacterPropertyExceptions: public PropertyExceptions
|
|
{
|
|
public:
|
|
/// Creates a CHPX wich doesn't modify anything.
|
|
/// The grpprl list is empty
|
|
CharacterPropertyExceptions(): PropertyExceptions()
|
|
{
|
|
}
|
|
|
|
/// Parses the bytes to retrieve a CHPX
|
|
CharacterPropertyExceptions( byte* bytes, int size ): PropertyExceptions( bytes, size )
|
|
{
|
|
}
|
|
};
|
|
} |