summaryrefslogtreecommitdiff
path: root/libsi/descriptor.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-01-24 14:49:51 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-01-24 14:49:51 +0100
commit72189b52280e77409f49bcb79c46ba63cb774e2b (patch)
tree4823d6ef427b6668acc496d0a8f6f68408ea1c52 /libsi/descriptor.h
parenta4b743b355bf0b2599c534611420af38591dd343 (diff)
downloadvdr-72189b52280e77409f49bcb79c46ba63cb774e2b.tar.gz
vdr-72189b52280e77409f49bcb79c46ba63cb774e2b.tar.bz2
Added ISO639LanguageDescriptor to 'libsi'
Diffstat (limited to 'libsi/descriptor.h')
-rw-r--r--libsi/descriptor.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/libsi/descriptor.h b/libsi/descriptor.h
index 3eb90fa2..ed38239f 100644
--- a/libsi/descriptor.h
+++ b/libsi/descriptor.h
@@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: descriptor.h 1.3 2004/01/12 16:17:47 kls Exp $
+ * $Id: descriptor.h 1.4 2004/01/24 14:49:00 kls Exp $
* *
***************************************************************************/
@@ -374,6 +374,15 @@ private:
const descr_linkage *s;
};
+class ISO639LanguageDescriptor : public Descriptor {
+public:
+ char languageCode[3];
+protected:
+ virtual void Parse();
+private:
+ const descr_iso_639_language *s;
+};
+
//a descriptor currently unimplemented in this library
class UnimplementedDescriptor : public Descriptor {
protected: