summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9audiocodecs.h
blob: ec60b5a94d7bc2342b0c5713ab4c8b6ae59514d9 (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
44
45
46
//
// C++ Interface: k9audiocodecs
//
// Description: 
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9AUDIOCODECS_H
#define K9AUDIOCODECS_H

#include "k9common.h"
#include "k9config.h"
#include <tqobject.h>

/**
	@author Jean-Michel PETIT <k9copy@free.fr>
*/

class _k9AudioCodec;
class k9AudioCodecs : public TQObject
{
  Q_OBJECT
  
public:
    k9AudioCodecs(TQObject *parent = 0, const char *name = 0);

    ~k9AudioCodecs();
    void save();
    int count();
    void setOptions(int _num,TQString _value);
    void setCodecName(int _num,TQString _value);
    TQString getOptions(int _num);
    TQString getCodecName(int _num);
    void remove(int _num);
    void reset();
private:
    TQMap <int,_k9AudioCodec> m_codecs;
    k9Config *m_config;

};

#endif