Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!usc!cs.utexas.edu!asuvax!ukma!hsdndev!rice!uupsi!sunic!bio.embnet.se!sundvall From: sundvall@bio.embnet.se (Mats Sundvall) Newsgroups: comp.lang.c++ Subject: Object/IO in NIHCL Message-ID: <1991May27.145953.115@bio.embnet.se> Date: 27 May 91 13:59:52 GMT Organization: Embnet node in Sweden, Biomedical Center, University of Uppsala, Sweden Lines: 23 I am aboout to use the object IO mechanism in NIHCL 3.0 to be able to tranfer data transactions between two machines. What I have not figured out yet is if you transfer an object that contains pointers to other objects, are the objects pointed to transfered as well. class Transaction : public Object { private: int counter; someObject *typeofdata; someOtherObject data; .. } I do not want typeofdata to be transfered in every transaction because that will be to much overhead.