blob: 060f6944ede27715ab86601c66acb6e26f8a7607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef MixSet_h
#define MixSet_h
#include "mixdevice.h"
class MixSet : public TQPtrList<MixDevice>
{
public:
void read( TDEConfig *config, const TQString& grp );
void write( TDEConfig *config, const TQString& grp );
void clone( MixSet &orig );
TQString name() { return m_name; };
void setName( const TQString &name );
private:
TQString m_name;
};
#endif
|