Add xml:lang support.

This commit is contained in:
Jonathan Schleifer 2012-02-03 17:26:34 +01:00
parent 1b9c63195a
commit 6ddf416e50
4 changed files with 53 additions and 4 deletions

View file

@ -35,6 +35,7 @@
XMPPJID *to;
OFString *type;
OFString *ID;
OFString *language;
/// \endcond
}
@ -47,6 +48,7 @@
@property (copy) OFString *type;
/// \brief The value of the stanza's id attribute
@property (copy) OFString *ID;
/// \brief The stanza's xml:lang
#endif
/**
@ -158,4 +160,6 @@
- (OFString*)type;
- (void)setID: (OFString*)ID;
- (OFString*)ID;
- (void)setLanguage: (OFString*)language;
- (OFString*)language;
@end