Files
core/ASCOfficeDocFile/DocDocxConverter/SectionPropertyExceptions.h

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()
{
}
};
}