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.
44 lines
607 B
44 lines
607 B
15 years ago
|
//
|
||
|
// C++ Implementation: k9dvdsize
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
//
|
||
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
|
||
|
//
|
||
|
// Copyright: See COPYING file that comes with this distribution
|
||
|
//
|
||
|
//
|
||
|
#include "k9dvdsize.h"
|
||
|
|
||
|
int DVD_MAX_SIZE=4400;
|
||
|
|
||
|
k9DVDSize::k9DVDSize(QObject *parent,const char *name,const QStringList args)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int k9DVDSize::getMaxSize(){
|
||
|
return DVD_MAX_SIZE;
|
||
|
}
|
||
|
|
||
|
void k9DVDSize::setMaxSize(int _size){
|
||
|
DVD_MAX_SIZE=_size;
|
||
|
|
||
|
}
|
||
|
|
||
|
int k9DVDSize::getMaxSizeDyn(){
|
||
|
return DVD_MAX_SIZE;
|
||
|
}
|
||
|
|
||
|
void k9DVDSize::setMaxSizeDyn(int _size){
|
||
|
DVD_MAX_SIZE=_size;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
k9DVDSize::~k9DVDSize()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|