Teuchos - Trilinos Tools Package Version of the Day
Loading...
Searching...
No Matches
Teuchos_TableDecl.hpp
1#ifndef TEUCHOS_TABLE_DECL_HPP
2#define TEUCHOS_TABLE_DECL_HPP
3
4#include <vector>
5
6namespace Teuchos {
7
8template <typename T>
9struct Table {
10 std::vector<T> data;
11 int ncols;
12 typedef typename std::vector<T>::reference Ref;
13 typedef typename std::vector<T>::const_reference ConstRef;
14 Table();
15 Table(int ncols_init, int nrows_reserve);
16};
17
18}
19
20#endif
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...