mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 01:43:39 +08:00
23 lines
412 B
C++
23 lines
412 B
C++
#pragma once
|
|
#ifndef ODP_LIMIT_ADDITIVE_INCLUDE_H_
|
|
#define ODP_LIMIT_ADDITIVE_INCLUDE_H_
|
|
|
|
#include "setter.h"
|
|
#include <string>
|
|
|
|
namespace Odp
|
|
{
|
|
namespace Limit
|
|
{
|
|
class Additive : public setter::from<std::string>
|
|
{
|
|
public:
|
|
Additive();
|
|
|
|
private:
|
|
virtual const std::string no_find() const;
|
|
};
|
|
} // namespace Limit
|
|
} // namespace Odp
|
|
|
|
#endif // ODP_LIMIT_ADDITIVE_INCLUDE_H_
|