MeshTex  3.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
AllocatedMatrix.h
Go to the documentation of this file.
1 
7 /*
8  * Copyright 2012 Joel Baxter
9  *
10  * This file is part of MeshTex.
11  *
12  * MeshTex is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * MeshTex is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with MeshTex. If not, see <http://www.gnu.org/licenses/>.
24  */
25 
26 #if !defined(INCLUDED_ALLOCATEDMATRIX_H)
27 #define INCLUDED_ALLOCATEDMATRIX_H
28 
29 #include "debugging/debugging.h"
30 #include "ipatch.h"
31 
38 template<typename Element>
39 class AllocatedMatrix : public Matrix<Element>
40 {
41 public: // public methods
42 
49  AllocatedMatrix(std::size_t x, std::size_t y) :
50  Matrix(x, y, (_allocated = new Element[x*y])) {}
51 
55  ~AllocatedMatrix() { delete [] _allocated; }
56 
57 private: // private member vars
58 
62  Element *_allocated;
63 };
64 
65 #endif // #if !defined(INCLUDED_ALLOCATEDMATRIX_H)