00001 #ifndef _MQVARIANT_H_ 00002 #define _MQVARIANT_H_ 00003 00004 /* Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University 00005 Release Date: 2004-11-01 00006 Part of the MapQuant suite library "mqbasic.lib" 00007 */ 00008 00018 union MQVariant 00019 { 00020 00021 int value_i; 00022 float value_f; 00023 char* value_s; 00024 double value_d; 00025 }; 00026 00027 typedef union MQVariant MQVariant; 00028 00029 #endif 00030