• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: How to encode STL vector
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to encode STL vector


  • Subject: Re: How to encode STL vector
  • From: Arthur Clemens <email@hidden>
  • Date: Wed, 6 Nov 2002 23:42:46 +0100

Thanks, this works. Only the archivers really don't like a vector with no elements, so as a workaround I first tried to use conditionals: if (size > 0)
but that gives another error when reading back in: "byte expected".
So I now always keep one element in the vector array. It's a bit annoying.

Arthur Clemens





You can encode it just like you would a plain C array:

//Encode
const unsigned size = myVector.size();
[aCoder encodeValueOfObjCType: @encode(unsigned) at: &size];
[aCoder encodeArrayOfObjCType: @encode(unsigned) count: size at: &myVector.front()];


//Decode
unsigned size;
[aCoder decodeValueOfObjCType: @encode(unsigned) at: &size];
myVector.resize(size);
[aCoder decodeArrayOfObjCType: @encode(unsigned) count: size at: &myVector.front()];
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

  • Follow-Ups:
    • Re: How to encode STL vector
      • From: "Clark S. Cox III" <email@hidden>
    • Re: How to encode STL vector
      • From: James Montgomerie <email@hidden>
References: 
 >Re: How to encode STL vector (From: "Clark S. Cox III" <email@hidden>)

  • Prev by Date: Re: To all cocoa developers - new cocoa dev forum
  • Next by Date: RgnHandle replacement?
  • Previous by thread: Re: How to encode STL vector
  • Next by thread: Re: How to encode STL vector
  • Index(es):
    • Date
    • Thread