mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
20 lines
412 B
C++
20 lines
412 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 )
|
|
{
|
|
}
|
|
|
|
virtual ~SectionPropertyExceptions()
|
|
{
|
|
}
|
|
};
|
|
} |