1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-08-05 07:17:11 +01:00

big refactoring for cleaner code conventions

This commit is contained in:
2014-01-22 16:57:47 +01:00
parent 967f1da061
commit 278bc59a33
25 changed files with 663 additions and 635 deletions

View File

@@ -13,15 +13,15 @@ typedef Eigen::MatrixXcd CMatBase;
typedef Eigen::VectorXd DVecBase;
typedef Eigen::VectorXcd CVecBase;
class DMat: public DMatBase, public IOObject
class DMat: public DMatBase, public IoObject
{
public:
// constructors
DMat(void);
DMat(const DMat& M);
DMat(unsigned int nrow, unsigned int ncol);
DMat(const unsigned int nRow, const unsigned int nCol);
// IO
virtual IOType getType(void);
virtual unsigned int getType(void);
};
LATAN_END_CPPDECL