ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/SymMatrix.hpp
Revision: 1039
Committed: Sat Feb 7 00:16:47 2004 UTC (21 years, 3 months ago) by tim
File size: 223 byte(s)
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 tim 1039 #ifndef _SYMMATRIX_H_
2     #define _SYMMATRIX_H_
3     class SymMatrix{
4     public:
5     SymMatrix() {}
6     SymMatrix(int){}
7     double& operator()(int i, int j) {return data[i][j];}
8     protected:
9     double ** data;
10     };
11     #endif

Properties

Name Value
svn:executable *