IWORKChart.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/*
3 * This file is part of the libetonyek project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#ifndef IWORKCHART_H_INCLUDED
11#define IWORKCHART_H_INCLUDED
12
13#include <deque>
14#include <string>
15
16#include <boost/optional.hpp>
17
18namespace libetonyek
19{
20
22{
23
24public:
25 IWORKChart();
26
27 unsigned m_chartType;
28 std::deque<std::string> m_rowNames;
29 std::deque<std::string> m_columnNames;
30 boost::optional<std::string> m_chartName;
31 boost::optional<std::string> m_valueTitle;
32 boost::optional<std::string> m_categoryTitle;
33
34};
35
36}
37
38#endif // IWORKCHART_H_INCLUDED
39
40/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition IWORKChart.h:22
unsigned m_chartType
Definition IWORKChart.h:27
IWORKChart()
Definition IWORKChart.cpp:15
std::deque< std::string > m_rowNames
Definition IWORKChart.h:28
std::deque< std::string > m_columnNames
Definition IWORKChart.h:29
boost::optional< std::string > m_valueTitle
Definition IWORKChart.h:31
boost::optional< std::string > m_categoryTitle
Definition IWORKChart.h:32
boost::optional< std::string > m_chartName
Definition IWORKChart.h:30
Definition IWORKBezierElement.cpp:21

Generated for libetonyek by doxygen 1.12.0