summaryrefslogtreecommitdiffstats
path: root/kmix/mixset.h
blob: f66692b2c348868cd0f4d114d65a622244ba0a6d (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( 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