summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/encoders.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/encoders.h')
-rw-r--r--rbutil/rbutilqt/encoders.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/rbutil/rbutilqt/encoders.h b/rbutil/rbutilqt/encoders.h
index f69c3ba611..688ffbcd25 100644
--- a/rbutil/rbutilqt/encoders.h
+++ b/rbutil/rbutilqt/encoders.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2007 by Dominik Wenger 9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id: talkfile.h 15212 2007-10-19 21:49:07Z domonoky $ 10 * $Id: encoders.h 15212 2007-10-19 21:49:07Z domonoky $
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -45,19 +45,19 @@ class EncBase : public QDialog
45 Q_OBJECT 45 Q_OBJECT
46public: 46public:
47 EncBase(QWidget *parent ); 47 EncBase(QWidget *parent );
48 virtual ~EncBase(){} 48
49 virtual bool encode(QString input,QString output) = 0; 49 virtual bool encode(QString input,QString output){return false;}
50 virtual bool start() = 0; 50 virtual bool start(){return false;}
51 virtual bool stop() = 0; 51 virtual bool stop(){return false;}
52 virtual void showCfg() = 0; 52 virtual void showCfg(){}
53 virtual bool configOk()=0; 53 virtual bool configOk(){return false;}
54 54
55 void setUserCfg(QSettings *uSettings){userSettings = uSettings;} 55 void setUserCfg(QSettings *uSettings){userSettings = uSettings;}
56 56
57public slots: 57public slots:
58 virtual void accept(void)=0; 58 virtual void accept(void){}
59 virtual void reject(void)=0; 59 virtual void reject(void){}
60 virtual void reset(void)=0; 60 virtual void reset(void){}
61 61
62protected: 62protected:
63 63