plugins: plugin loader redesign
[geany-mirror.git] / tests / ctags / objectivec_property.mm
blob28a521d5605bb0d486cb18f0d6bf2f336cb6190d
2 @interface Person : NSObject {
3     @public
4         NSString *m_name;
5     @private
6         int m_age;
8  
9 @property(copy) NSString *personName;
10 @property(readonly) int personAge;
12 -(id)initWithAge:(int)age;
13 @end