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 __TABLEINFO_H__
11 #define __TABLEINFO_H__
12 
13 namespace libmspub
14 {
15 struct TableInfo
16 {
17  std::vector<unsigned> m_rowOffsetsInEmu;
18  std::vector<unsigned> m_columnOffsetsInEmu;
19  unsigned m_numRows;
20  unsigned m_numColumns;
21  TableInfo(unsigned numRows, unsigned numColumns) : m_rowOffsetsInEmu(),
22  m_columnOffsetsInEmu(), m_numRows(numRows), m_numColumns(numColumns)
23  {
24  }
25 };
26 } // namespace libmspub
27 
28 #endif /* __TABLEINFO_H__ */
29 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
unsigned m_numRows
Definition: TableInfo.h:19
Definition: TableInfo.h:15
unsigned m_numColumns
Definition: TableInfo.h:20
std::vector< unsigned > m_columnOffsetsInEmu
Definition: TableInfo.h:18
TableInfo(unsigned numRows, unsigned numColumns)
Definition: TableInfo.h:21
std::vector< unsigned > m_rowOffsetsInEmu
Definition: TableInfo.h:17

Generated for libmspub by doxygen 1.8.7