mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 22:01:45 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
20 lines
372 B
C++
20 lines
372 B
C++
#pragma once
|
|
#ifndef XML_EXCEPTION_DECLARATION_INCLUDE_H_
|
|
#define XML_EXCEPTION_DECLARATION_INCLUDE_H_
|
|
|
|
#include "Base.h"
|
|
|
|
|
|
namespace XML
|
|
{
|
|
namespace Exception
|
|
{
|
|
class Declaration : public Base
|
|
{
|
|
public:
|
|
Declaration(const std::string& message);
|
|
};
|
|
} // namespace Exception
|
|
} // namespace XML
|
|
|
|
#endif // XML_EXCEPTION_DECLARATION_INCLUDE_H_
|