Teuchos - Trilinos Tools Package  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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