summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9dvdsize.h
blob: fee2278676c1471bfa3d0f56eed4d993293d91c1 (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
//
// 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 <qobject.h>
#include <qstringlist.h>
/**
@author Jean-Michel PETIT
*/
class k9DVDSize:public QObject {
Q_OBJECT
private:
    static int m_size;
public:
    k9DVDSize(QObject  *parent=0,const char *name=0,const QStringList args=0) ;
    static int getMaxSize();
   static void setMaxSize(int _size);
    virtual int getMaxSizeDyn();
    virtual void setMaxSizeDyn(int _size);
    ~k9DVDSize();

};

#endif