follow hotplug-ng changes
[enigma2.git] / lib / base / console.h
index bfa0240704533477b345eddc44acbbb6c0e1a0de..1b58dbda676f5f4fd3e7d8aaf4e38450b38dc08d 100644 (file)
@@ -33,14 +33,14 @@ class eConsoleAppContainer: public Object
 #endif
 public:
        eConsoleAppContainer();
-       int execute( const std::string &str );
+       int execute( const char *str );
        ~eConsoleAppContainer();
        int getPID() { return pid; }
        void kill();
        void sendCtrlC();
        void write( const char *data, int len );
        bool running() { return (fd[0]!=-1) && (fd[1]!=-1) && (fd[2]!=-1); }
-       PSignal1Str<void, const char*> dataAvail;
+       PSignal1<void, const char*> dataAvail;
        PSignal1<void,int> dataSent;
        PSignal1<void,int> appClosed;
 };