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.
k9copy/libk9copy/k9dvdsize.h

36 lines
650 B

//
// 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 <tqobject.h>
#include <tqstringlist.h>
/**
@author Jean-Michel PETIT
*/
class k9DVDSize:public TQObject {
Q_OBJECT
private:
static int m_size;
public:
k9DVDSize(TQObject *parent=0,const char *name=0,const TQStringList args=0) ;
static int getMaxSize();
static void setMaxSize(int _size);
virtual int getMaxSizeDyn();
virtual void setMaxSizeDyn(int _size);
~k9DVDSize();
};
#endif