mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 15:21:39 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
22 lines
392 B
C++
22 lines
392 B
C++
#pragma once
|
|
#ifndef XML_LIMIT_ENCODING_INCLUDE_H_
|
|
#define XML_LIMIT_ENCODING_INCLUDE_H_
|
|
|
|
#include <string>
|
|
#include "setter.h"
|
|
|
|
|
|
namespace XML
|
|
{
|
|
namespace Limit
|
|
{
|
|
class Encoding : public setter::from<std::string>
|
|
{
|
|
public:
|
|
Encoding();
|
|
const std::string no_find() const;
|
|
};
|
|
} // namespace Limit
|
|
} // namespace XML
|
|
|
|
#endif // XML_LIMIT_ENCODING_INCLUDE_H_
|