NumeRe v1.1.4
NumeRe: Framework für Numerische Rechnungen
tablecolumn.hpp File Reference
#include <string>
#include <vector>
#include <memory>
#include "../ParserLib/muParserDef.h"
#include "../structures.hpp"
Include dependency graph for tablecolumn.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  TableColumn
 Abstract table column, which allows using it to compose the data table in each Memory instance. More...
 

Typedefs

typedef std::unique_ptr< TableColumnTblColPtr
 Typedef for simplifying the usage of a smart pointer in combination with a TableColumn instance. More...
 
typedef std::vector< TblColPtrTableColumnArray
 This typedef represents the actual table, which is implemented using a std::vector. More...
 

Typedef Documentation

◆ TableColumnArray

typedef std::vector<TblColPtr> TableColumnArray

This typedef represents the actual table, which is implemented using a std::vector.

Definition at line 113 of file tablecolumn.hpp.

◆ TblColPtr

typedef std::unique_ptr<TableColumn> TblColPtr

Typedef for simplifying the usage of a smart pointer in combination with a TableColumn instance.

Definition at line 106 of file tablecolumn.hpp.