summaryrefslogtreecommitdiff
path: root/dish.h
diff options
context:
space:
mode:
Diffstat (limited to 'dish.h')
-rw-r--r--dish.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/dish.h b/dish.h
index 07f0547..f891d7b 100644
--- a/dish.h
+++ b/dish.h
@@ -243,12 +243,12 @@ namespace SI
#define SIZE_TABLE_128 128
#define SIZE_TABLE_255 255
-class UnimplementedDescriptor;
+using namespace std;
class DishDescriptor {
public:
DishDescriptor();
- virtual ~DishDescriptor();
+ virtual ~DishDescriptor();
const char* getName(void) const { return name; }
const char* getShortText(void);
const char *getDescription(void);
@@ -284,16 +284,16 @@ protected:
time_t originalAirDate;
char* seriesId;
char* programId;
+ char* ratingStr;
-
- struct HuffmanTable {
- unsigned int startingAddress;
- unsigned char character;
- unsigned char numberOfBits;
- };
- static HuffmanTable Table128[SIZE_TABLE_128];
- static HuffmanTable Table255[SIZE_TABLE_255];
-
+ struct HuffmanTable
+ {
+ unsigned int startingAddress;
+ unsigned char character;
+ unsigned char numberOfBits;
+ };
+ static HuffmanTable Table128[SIZE_TABLE_128];
+ static HuffmanTable Table255[SIZE_TABLE_255];
};
} /* namespace SI */