///////////////////////////////////////////////////////////////////////////////////////////////////
// Interface IDreamVector
[helpstring("Vector structure")]
typedef struct IDreamVector
{
[helpstring("Item count")]
int _itemCount;
[helpstring("Vector data")]
double* _data;
} IDreamVector;