Files
core/ASCOfficeOdtFile/Source/OdtFormat/Limit/LineStyle.h

24 lines
422 B
C++

#pragma once
#ifndef ODT_LIMIT_LINE_STYLE_INCLUDE_H_
#define ODT_LIMIT_LINE_STYLE_INCLUDE_H_
#include "setter.h"
#include <string>
namespace Odt
{
namespace Limit
{
class LineStyle : public setter::from<std::string>
{
public:
LineStyle();
private:
virtual const std::string no_find() const;
};
} // namespace Limit
} // namespace Odt
#endif // ODT_LIMIT_LINE_STYLE_INCLUDE_H_