05-09-2010, 12:50 PM
C++ 'float' type in QM is 'FLOAT'.
type EXPORT_INFO_111 flag FLOAT'total ...
________________________________________
QM does not have C++ static arrays. Use variable of ARRAY type.
C++
EXPORT_INFO_111 my_list[3];
Function(... my_list ...)
QM
ARRAY(EXPORT_INFO_111) my_list.create(3);
Function(... &a[0] ...)
type EXPORT_INFO_111 flag FLOAT'total ...
________________________________________
QM does not have C++ static arrays. Use variable of ARRAY type.
C++
EXPORT_INFO_111 my_list[3];
Function(... my_list ...)
QM
ARRAY(EXPORT_INFO_111) my_list.create(3);
Function(... &a[0] ...)
