Memosa-FVM  0.2
esbgkbase/MatrixJML.h
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #ifndef _MATRIXJML_H_
6 #define _MATRIXJML_H_
7 
8 template<class T>
9 class MatrixJML
10 {
11  public:
12 
13  MatrixJML() {}
14  virtual ~MatrixJML() {}
15  virtual T& getElement(const int i,const int j)=0;
16  virtual void zero()=0;
17 
18 };
19 
20 #endif
virtual T & getElement(const int i, const int j)=0
virtual void zero()=0
virtual ~MatrixJML()