diff options
Diffstat (limited to 'libsi/descriptor.h')
-rw-r--r-- | libsi/descriptor.h | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/libsi/descriptor.h b/libsi/descriptor.h index 24d95e8e..9abe1f01 100644 --- a/libsi/descriptor.h +++ b/libsi/descriptor.h @@ -6,6 +6,8 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * + * $Id: descriptor.h 1.2 2003/12/13 10:42:08 kls Exp $ + * * ***************************************************************************/ #ifndef LIBSI_DESCRIPTOR_H @@ -16,7 +18,6 @@ namespace SI { - class ShortEventDescriptor : public Descriptor { public: char languageCode[3]; @@ -56,10 +57,9 @@ public: //same semantics as with SI::String char *getText(); //buffer must at least be getTextLength(), getMaximumTextLength() is a good choice - char *getText(char *buffer); + char *getText(char *buffer); }; - class TimeShiftedEventDescriptor : public Descriptor { public: int getReferenceServiceId() const; @@ -89,7 +89,6 @@ protected: virtual void Parse(); }; - class ParentalRatingDescriptor : public Descriptor { public: class Rating : public LoopElement { @@ -107,7 +106,6 @@ protected: virtual void Parse(); }; - class CaDescriptor : public Descriptor { public: int getCaType() const; @@ -172,7 +170,6 @@ protected: virtual void Parse(); }; - class SatelliteDeliverySystemDescriptor : public Descriptor { public: int getFrequency() const; @@ -247,7 +244,6 @@ protected: virtual void Parse(); }; - class TimeShiftedServiceDescriptor : public Descriptor { public: int getReferenceServiceId() const; @@ -288,7 +284,6 @@ protected: virtual void Parse(); }; - class ServiceMoveDescriptor : public Descriptor { public: int getNewOriginalNetworkId() const; @@ -366,10 +361,6 @@ protected: virtual void Parse(); }; - - - - //a descriptor currently unimplemented in this library class UnimplementedDescriptor : public Descriptor { protected: @@ -418,7 +409,6 @@ protected: virtual void Parse(); }; - class MHP_ApplicationNameDescriptor : public Descriptor { public: class NameEntry : public LoopElement { @@ -434,7 +424,6 @@ protected: virtual void Parse(); }; - class MHP_TransportProtocolDescriptor : public Descriptor { public: enum Protocol { ObjectCarousel = 0x01, IPviaDVB = 0x02, HTTPoverInteractionChannel = 0x03 }; @@ -464,7 +453,6 @@ protected: virtual void Parse(); }; - class MHP_DVBJApplicationLocationDescriptor : public Descriptor { public: String baseDirectory; @@ -484,9 +472,6 @@ private: const descr_application_icons_descriptor_end *s; }; - - } //end of namespace #endif //LIBSI_TABLE_H - |