Teuchos - Trilinos Tools Package
Version of the Day
parser
src
Teuchos_TableDecl.hpp
1
#ifndef TEUCHOS_TABLE_DECL_HPP
2
#define TEUCHOS_TABLE_DECL_HPP
3
4
#include <vector>
5
6
namespace
Teuchos
{
7
8
template
<
typename
T>
9
struct
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
Teuchos
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos, as well as a number of utility routines.
Generated by
1.8.13