Problem in assigning a value in sequence
In idl file containing
Struct B
{
Long id;
sequence <long , 5 > values;
sequence <long , 5 > value2;
}
Struct A
{
Long key;
B Emp;
}
Instance->key =1;
Instance->Emp.id =2;
Both this is correct but when assigning in sequence
Instance->Emp.value =1; this is causing problem
It is saying = invalid conversion from int to DDS_LongSeq
Help me