summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9dvdsize.cpp
blob: 0e671b33dad225239799d58bc16e5d8fcbfafaa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// 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()
{
}