fix wrap around with enabled movemode
[enigma2.git] / lib / service / iservice.h
index 2d38d6f66e0ec4d90d0d6ccfd62031ee56095422..785330178e336b872f282a2a1abfc0f40b43cddb 100644 (file)
@@ -387,13 +387,12 @@ class iCueSheet: public iObject
 public:
                        /* returns a list of (pts, what)-tuples */
        virtual PyObject *getCutList() = 0;
-       
+       virtual void setCutList(PyObject *list) = 0;
        enum { cutIn = 0, cutOut = 1, cutMark = 2 };
-       
-       virtual RESULT addCut(const pts_t &when, int what) = 0;
-       virtual RESULT removeCut(const pts_t &when, int what) = 0;
 };
 
+TEMPLATE_TYPEDEF(ePtr<iCueSheet>, iCueSheetPtr);
+
 class iPlayableService: public iObject
 {
 #ifdef SWIG