prepare better configSequence
[enigma2.git] / lib / dvb_ci / dvbci.h
index b72b21b1ef82bdc36e6fb72b87496a9807da84e1..eb4b6b041aca99d4976292f63246a9ce916a6f8b 100644 (file)
@@ -13,17 +13,15 @@ DECLARE_REF(eDVBCISlot);
 private:
        int fd;
        void data(int);
-       eSocketNotifier *notifier_data;
-       void event(int);
-       eSocketNotifier *notifier_event;
+       eSocketNotifier *notifier;
 
        int state;
        enum {stateRemoved, stateInserted};     
 public:
        eDVBCISlot(eMainloop *context, int nr);
-       virtual ~eDVBCISlot();
+       ~eDVBCISlot();
        
-       int eDVBCISlot::write(const unsigned char *data, size_t len);
+       int send(const unsigned char *data, size_t len);
        
        eDVBCIApplicationManagerSession *application_manager;
        eDVBCICAManagerSession *ca_manager;
@@ -31,11 +29,12 @@ public:
 
 class eDVBCIInterfaces
 {
+DECLARE_REF(eDVBCIInterfaces);
 private:
        eSmartPtrList<eDVBCISlot>       m_slots;
 public:
        eDVBCIInterfaces();
-       virtual ~eDVBCIInterfaces();
+       ~eDVBCIInterfaces();
 };
 
 #endif