You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
642 B
35 lines
642 B
13 years ago
|
//
|
||
|
// C++ Interface: k9dvdsize
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
//
|
||
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (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
|