On 26 Sep 2008, at 17:03, Alex Finkel wrote:
Hi there.I am in a process of porting some C++ code to ObjC. How to port the codebellow (operators). Thanks.
---- snip -----operator= is a normal assignment method that takes an NSArray as its argument. Something like the following (untested) code, depending on what the rest of the C++ class looks like:
- (void)setEncodings:(NSArray *)encoding {
_count = [encoding size];
_encodings = [encoding copy];
}
But I wouldn't even have the _count instance variable. It's just as
easy to just ask the _encodings array for its size whenever needed.
The other methods are left as an exercise to the reader.I originally learned C++ back in the 80's from a guy named Bjarne Stroustrup, but I'd pick Objective C any time.
Robert
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________ Cocoa-dev mailing list ([email protected]) 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]
