summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9dvdsize.h
blob: bc43253eefce1ed98f6ddf490b7260f9701b2f2e (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
//
// 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