| 1 | /*
 | 
|---|
| 2 |  *    vmg - a versatile multigrid solver
 | 
|---|
| 3 |  *    Copyright (C) 2012 Institute for Numerical Simulation, University of Bonn
 | 
|---|
| 4 |  *
 | 
|---|
| 5 |  *  vmg is free software: you can redistribute it and/or modify
 | 
|---|
| 6 |  *  it under the terms of the GNU General Public License as published by
 | 
|---|
| 7 |  *  the Free Software Foundation, either version 3 of the License, or
 | 
|---|
| 8 |  *  (at your option) any later version.
 | 
|---|
| 9 |  *
 | 
|---|
| 10 |  *  vmg is distributed in the hope that it will be useful,
 | 
|---|
| 11 |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
| 12 |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
| 13 |  *  GNU General Public License for more details.
 | 
|---|
| 14 |  *
 | 
|---|
| 15 |  *  You should have received a copy of the GNU General Public License
 | 
|---|
| 16 |  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
|---|
| 17 |  */
 | 
|---|
| 18 | 
 | 
|---|
| 19 | /**
 | 
|---|
| 20 |  * @file   tuple.hpp
 | 
|---|
| 21 |  * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
 | 
|---|
| 22 |  * @date   Wed May 18 16:48:46 2011
 | 
|---|
| 23 |  *
 | 
|---|
| 24 |  * @brief  Templated class for storing tuples.
 | 
|---|
| 25 |  *
 | 
|---|
| 26 |  */
 | 
|---|
| 27 | 
 | 
|---|
| 28 | #ifndef TUPLE_HPP_
 | 
|---|
| 29 | #define TUPLE_HPP_
 | 
|---|
| 30 | 
 | 
|---|
| 31 | namespace VMG
 | 
|---|
| 32 | {
 | 
|---|
| 33 | 
 | 
|---|
| 34 | template<class T>
 | 
|---|
| 35 | class Tuple
 | 
|---|
| 36 | {
 | 
|---|
| 37 | public:
 | 
|---|
| 38 |   T& Left() {return left;}
 | 
|---|
| 39 |   T& Right() {return right;}
 | 
|---|
| 40 | 
 | 
|---|
| 41 |   const T& Left() const {return left;}
 | 
|---|
| 42 |   const T& Right() const {return right;}
 | 
|---|
| 43 | 
 | 
|---|
| 44 | private:
 | 
|---|
| 45 |   T left, right;
 | 
|---|
| 46 | };
 | 
|---|
| 47 | 
 | 
|---|
| 48 | template <class T>
 | 
|---|
| 49 | class Tuple3
 | 
|---|
| 50 | {
 | 
|---|
| 51 | public:
 | 
|---|
| 52 |   Tuple<T>& operator[](const int& index) {return tuples[index];}
 | 
|---|
| 53 |   Tuple<T>& X() {return tuples[0];}
 | 
|---|
| 54 |   Tuple<T>& Y() {return tuples[1];}
 | 
|---|
| 55 |   Tuple<T>& Z() {return tuples[2];}
 | 
|---|
| 56 | 
 | 
|---|
| 57 |   const Tuple<T>& operator[](const int& index) const {return tuples[index];}
 | 
|---|
| 58 |   const Tuple<T>& X() const {return tuples[0];}
 | 
|---|
| 59 |   const Tuple<T>& Y() const {return tuples[1];}
 | 
|---|
| 60 |   const Tuple<T>& Z() const {return tuples[2];}
 | 
|---|
| 61 | 
 | 
|---|
| 62 | private:
 | 
|---|
| 63 |   Tuple<T> tuples[3];
 | 
|---|
| 64 | };
 | 
|---|
| 65 | 
 | 
|---|
| 66 | }
 | 
|---|
| 67 | 
 | 
|---|
| 68 | #endif /* TUPLE_HPP_ */
 | 
|---|