summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9dvdsize.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:32:19 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:32:19 +0000
commit0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch)
tree8578dcddfce4191f3f7a142a37769df7add48475 /libk9copy/k9dvdsize.h
downloadk9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz
k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk9copy/k9dvdsize.h')
-rw-r--r--libk9copy/k9dvdsize.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/libk9copy/k9dvdsize.h b/libk9copy/k9dvdsize.h
new file mode 100644
index 0000000..fee2278
--- /dev/null
+++ b/libk9copy/k9dvdsize.h
@@ -0,0 +1,34 @@
+//
+// C++ Interface: k9dvdsize
+//
+// Description:
+//
+//
+// Author: Jean-Michel PETIT <[email protected]>, (C) 2006
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef K9DVDSIZE_H
+#define K9DVDSIZE_H
+
+#include <qobject.h>
+#include <qstringlist.h>
+/**
+@author Jean-Michel PETIT
+*/
+class k9DVDSize:public QObject {
+Q_OBJECT
+private:
+ static int m_size;
+public:
+ k9DVDSize(QObject *parent=0,const char *name=0,const QStringList args=0) ;
+ static int getMaxSize();
+ static void setMaxSize(int _size);
+ virtual int getMaxSizeDyn();
+ virtual void setMaxSizeDyn(int _size);
+ ~k9DVDSize();
+
+};
+
+#endif