From my reading, I am gathering that you don't need typedef in C++ in the same way you do in Objective-C. For example, in C++ you can do this:
enum Order {first,second,third};
Order myOrder;
myOrder=first;
But in Objective-C, the line Order myOrder; would first require a typedef:
typedef enum {first,second,third} Order; //noting also the placement of Order at the end
Order myOrder;
myOrder=first;
Correct? Without the typedef in Objective-C you'd have to define myOrder by repeating the enum:
enum Order {first,second,third};
enum Order myOrder;
myOrder=first;
If in fact this is all correct, I find it a bit odd that there is this type of syntactic differences in the languages, since both are based on C and none of this is unique to the object-oriented natures of the languages, thus should be just straight C I would think.
