Orcus
Loading...
Searching...
No Matches
import_interface_strikethrough.hpp
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
7
8#pragma once
9
10#include "../env.hpp"
11#include "types.hpp"
12
13namespace orcus { namespace spreadsheet { namespace iface {
14
18class ORCUS_DLLPUBLIC import_strikethrough
19{
20public:
21 virtual ~import_strikethrough();
22
28 virtual void set_style(strikethrough_style_t s) = 0;
29
37 virtual void set_type(strikethrough_type_t s) = 0;
38
44 virtual void set_width(strikethrough_width_t s) = 0;
45
51 virtual void set_text(strikethrough_text_t s) = 0;
52
56 virtual void commit() = 0;
57};
58
59}}}
60
61/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition import_interface_strikethrough.hpp:19
virtual void set_style(strikethrough_style_t s)=0
virtual void set_text(strikethrough_text_t s)=0
virtual void set_width(strikethrough_width_t s)=0
virtual void set_type(strikethrough_type_t s)=0