summaryrefslogtreecommitdiffstats
path: root/kmix/mixset.h
blob: 244488832927502cee185fef8f2d42b6cd23e0b9 (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 QPtrList<MixDevice>
{
   public:
      void read( KConfig *config, const QString& grp );
      void write( KConfig *config, const QString& grp );

      void clone( MixSet &orig );

      QString name() { return m_name; };
      void setName( const QString &name );

   private:
      QString m_name;
};

#endif