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