CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    16

    Serialisation of array of objects

    Hi,

    Well my problem is about Networking basically. I am using CSocket class for data transfer from client to server.

    I am using Serialisation for data transfer from client to server. Now I have to transfer array of objects of my own class.

    Can anybody help me with this.

    thanx in advance,

    Ashu


  2. #2
    Join Date
    May 1999
    Posts
    69

    Re: Serialisation of array of objects

    if your objects are declare(d)_serial you can just << them into the archive, they will be dynamically constructed on the other side. You can do the same with your array (operator overloading or inherit from CObject).
    i'm not sure this answers your question...


    chrislaw

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured