TableInfo.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 libmspub 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 INCLUDED_TABLEINFO_H
11#define INCLUDED_TABLEINFO_H
12
13#include <vector>
14
15namespace libmspub
16{
17
19{
21 : m_startRow()
22 , m_endRow()
24 , m_endColumn()
25 {
26 }
27
28 unsigned m_startRow;
29 unsigned m_endRow;
30 unsigned m_startColumn;
31 unsigned m_endColumn;
32};
33
35{
36 std::vector<unsigned> m_rowHeightsInEmu;
37 std::vector<unsigned> m_columnWidthsInEmu;
38 unsigned m_numRows;
39 unsigned m_numColumns;
40 std::vector<CellInfo> m_cells;
41 TableInfo(unsigned numRows, unsigned numColumns) : m_rowHeightsInEmu(),
42 m_columnWidthsInEmu(), m_numRows(numRows), m_numColumns(numColumns),
43 m_cells()
44 {
45 }
46};
47} // namespace libmspub
48
49#endif /* INCLUDED_TABLEINFO_H */
50/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
Definition Arrow.h:14
unsigned m_startRow
Definition TableInfo.h:28
CellInfo()
Definition TableInfo.h:20
unsigned m_endRow
Definition TableInfo.h:29
unsigned m_endColumn
Definition TableInfo.h:31
unsigned m_startColumn
Definition TableInfo.h:30
std::vector< unsigned > m_columnWidthsInEmu
Definition TableInfo.h:37
std::vector< unsigned > m_rowHeightsInEmu
Definition TableInfo.h:36
unsigned m_numRows
Definition TableInfo.h:38
std::vector< CellInfo > m_cells
Definition TableInfo.h:40
unsigned m_numColumns
Definition TableInfo.h:39
TableInfo(unsigned numRows, unsigned numColumns)
Definition TableInfo.h:41

Generated for libmspub by doxygen 1.14.0