///////////////////////////////////////////////////////////////////////////////////////////////////
// Interface IDreamMatrix
[helpstring("Matrix structure")]
typedef struct IDreamMatrix
{
[helpstring("Row count")]
int _rowCount;
[helpstring("Column count")]
int _colCount;
[helpstring("Matrix data")]
double* _data;
} IDreamMatrix;