mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-13 16:24:45 +08:00
21 lines
528 B
C++
21 lines
528 B
C++
#pragma once
|
|
|
|
#include "IVisitable.h"
|
|
#include "SinglePropertyModifier.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class PropertyExceptions: public IVisitable
|
|
{
|
|
public:
|
|
/// A list of the sprms that encode the differences between
|
|
/// CHP for a character and the PAP for the paragraph style used.
|
|
list<SinglePropertyModifier> *grpprl;
|
|
|
|
virtual ~PropertyExceptions();
|
|
PropertyExceptions();
|
|
PropertyExceptions( const list<SinglePropertyModifier>& grpprl );
|
|
PropertyExceptions( byte* bytes, int size );
|
|
};
|
|
}
|