You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/kmix/mixset.h

22 lines
399 B

#ifndef MixSet_h
#define MixSet_h
#include "mixdevice.h"
class MixSet : public TQPtrList<MixDevice>
{
public:
void read( KConfig *config, const TQString& grp );
void write( KConfig *config, const TQString& grp );
void clone( MixSet &orig );
TQString name() { return m_name; };
void setName( const TQString &name );
private:
TQString m_name;
};
#endif