2010-08-09 14:54:20 +04:00
|
|
|
struct S {
|
|
|
|
S();
|
2010-08-09 14:54:37 +04:00
|
|
|
S(const S&);
|
2011-03-22 10:05:39 +03:00
|
|
|
~S();
|
2010-08-09 14:54:37 +04:00
|
|
|
S& operator= (const S&);
|
2010-08-09 14:54:20 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
@interface C {
|
2010-08-09 14:54:37 +04:00
|
|
|
S position;
|
2010-08-09 14:54:20 +04:00
|
|
|
}
|
2010-08-09 14:54:37 +04:00
|
|
|
@property(assign, nonatomic) S position;
|
2010-08-09 14:54:20 +04:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation C
|
2010-08-09 14:54:37 +04:00
|
|
|
@synthesize position;
|
2010-08-09 14:54:20 +04:00
|
|
|
@end
|