1 /* Copyright Jukka Jyl�nki
2
3    Licensed under the Apache License, Version 2.0 (the "License");
4    you may not use this file except in compliance with the License.
5    You may obtain a copy of the License at
6
7        http://www.apache.org/licenses/LICENSE-2.0
8
9    Unless required by applicable law or agreed to in writing, software
10    distributed under the License is distributed on an "AS IS" BASIS,
11    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12    See the License for the specific language governing permissions and
13    limitations under the License. */
14
15 /** @file MatrixProxy.h
16         @author Jukka Jyl�nki
17         @brief */
18 #pragma once
19
20 #include "myassert.h"
21 #include "../MathGeoLibFwd.h"
22
23 MATH_BEGIN_NAMESPACE
24
25 /// A proxy class for double brackets [][] element access in matrices.
26 template<int Cols>
27 class MatrixProxy
28 {
29 private:
30         float v[Cols];
31
32 public:
33         CONST_WIN32 float operator[](int col) const
34         {
35                 assert(col >= 0);
36                 assert(col < Cols);
37
38                 return v[col];
39         }
40         float &operator[](int col)
41         {
42                 assert(col >= 0);
43                 assert(col < Cols);
44
45                 return v[col];
46         }
47 };
48
49 MATH_END_NAMESPACE

Go back to previous page