| Rev | Line | |
|---|
| [48b662] | 1 | /**
|
|---|
| 2 | * @file tempgrid.hpp
|
|---|
| 3 | * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
|
|---|
| 4 | * @date Mon Apr 18 12:55:18 2011
|
|---|
| 5 | *
|
|---|
| 6 | * @brief VMG::TempGrid
|
|---|
| 7 | *
|
|---|
| 8 | */
|
|---|
| 9 |
|
|---|
| 10 | #ifndef TEMPGRID_HPP_
|
|---|
| 11 | #define TEMPGRID_HPP_
|
|---|
| 12 |
|
|---|
| 13 | #include "grid/grid.hpp"
|
|---|
| 14 |
|
|---|
| 15 | namespace VMG
|
|---|
| 16 | {
|
|---|
| 17 |
|
|---|
| 18 | class TempGrid : public Grid
|
|---|
| 19 | {
|
|---|
| 20 | public:
|
|---|
| 21 | virtual ~TempGrid();
|
|---|
| 22 |
|
|---|
| 23 | void SetProperties(const Grid& rhs);
|
|---|
| 24 | void SetProperties(const GlobalIndices& global, const LocalIndices& local, const SpatialExtent& extent);
|
|---|
| 25 | void ImportFromResidual(const Grid& sol, const Grid& rhs);
|
|---|
| 26 | };
|
|---|
| 27 |
|
|---|
| 28 | }
|
|---|
| 29 |
|
|---|
| 30 | #endif /* TEMPGRID_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.