Skip to main content
1-Visitor
February 7, 2017
Question

object toolkit

  • February 7, 2017
  • 1 reply
  • 954 views

How to do the equivalent of a ProArray containing element which are a ProArray of double with sequences ?

1 reply

15-Moonstone
February 7, 2017

I don't understand your question. Do you want to push sequences of doubles inside a ProArray structure?

It didn't make sense ... so you could create a sequence for that (don't know what you want):

//not tested : )

double d = 2.0;

xdoublesequence_ptr xds = xdoublesequence::create();

xds.append(d);

It's a shared_pointer so don't delete or free it ^.^

Br,

Eike