hi,
I'm writing a wrapper from unmanaged C++ to C++/CLI
I've replaced the variant_type by
a structure:
Type_Value
{
SupportedTypes Type,
String^ Value
}
Supported_Types //enm type
{
types written in hand
}
well, this is working very good and this is suitable for me
but now I need the results of variantchangety pe cuz I'm developping an OPC server and this is the general method to use
I have many ideas but I want to hear from you experts if there's any solution or other ways to wrap variant types
thx in advance.
I'm writing a wrapper from unmanaged C++ to C++/CLI
I've replaced the variant_type by
a structure:
Type_Value
{
SupportedTypes Type,
String^ Value
}
Supported_Types //enm type
{
types written in hand
}
well, this is working very good and this is suitable for me
but now I need the results of variantchangety pe cuz I'm developping an OPC server and this is the general method to use
I have many ideas but I want to hear from you experts if there's any solution or other ways to wrap variant types
thx in advance.
Comment