On Mon, Sep 15, 2008 at 2:43 PM, Alex Reynolds <[EMAIL PROTECTED]> wrote:
>>
>> Of course there's always std::vector< bool > ;-) usually at 1 bit per
>> bit...
>>
>> --
>> Scott Ribe
>> [EMAIL PROTECTED]
>> http://www.killerbytes.com/
>> (303) 722-0567 voice
>
>
> Thanks for the tip. So I ended up going the route of making my .m files into
> .mm files, and using std::vector< vector<BOOL> > to store vectors of
> vector<BOOL>'s.
>
> I found that iterator and const_iterator did not work on vector<BOOL> or
> vector<bool> objects. I grabbed vector.size() in order to loop over the
> vector.
>
> Is there a difference in the underlying storage between vector<BOOL> and
> vector<bool>? Is it really a vector of single bits or a vector of larger
> data?

vector<bool> will use 1 bit per element, vector<BOOL> will use 8 bits
per element.

>
> Are there any downsides to creating Cocoa-based applications in Objective
> C++?
>
> Thanks,
> Alex
> _______________________________________________
>
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>
> Please do not post admin requests or moderator comments to the list.
> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/cocoa-dev/clarkcox3%40gmail.com
>
> This email sent to [EMAIL PROTECTED]
>



-- 
Clark S. Cox III
[EMAIL PROTECTED]
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to