Hi, I'm trying to find out how the method void*
DataObject::getUserData(const SDOString& path) works. I thought it was the
same as, for example, long DataObject::getInteger(const SDOString& path):

DataObject do;
do.setInteger("id", 123);
long id1 = do.getInteger("id");
long* id2 = (long*) do.getUserData("id");

I thought the id1 would be the equals id2. Am I misunderstanding the
getUserData functionality?

Adriano Crestani

Reply via email to