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.
|
|
|
//
|
|
|
|
// 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(TQObject *parent,const char *name,const TQStringList 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()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "k9dvdsize.moc"
|