~mixxxdevelopers/mixxx/trunk

« back to all changes in this revision

Viewing changes to mixxx/src/midi/hss1394enumerator.h

Merging features_controllerAbstraction. Migration of mappings from .mixxx/midi/ to controllers/ only works on a version upgrade (end-users.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          hss1394enumerator.h
3
 
                    HSS1394 Device Enumerator Class
4
 
                    --------------------------------
5
 
    begin                : Fri Feb 26 2010
6
 
    copyright            : (C) 2010 Sean M. Pappalardo
7
 
    email                : spappalardo@mixxx.org
8
 
 
9
 
    This class handles discovery and enumeration of DJ controller devices
10
 
    that use the HSS1394 protocol and appear under the HSS1394
11
 
    cross-platform API.
12
 
 
13
 
***************************************************************************/
14
 
 
15
 
/***************************************************************************
16
 
*                                                                         *
17
 
*   This program is free software; you can redistribute it and/or modify  *
18
 
*   it under the terms of the GNU General Public License as published by  *
19
 
*   the Free Software Foundation; either version 2 of the License, or     *
20
 
*   (at your option) any later version.                                   *
21
 
*                                                                         *
22
 
***************************************************************************/
23
 
#ifndef HSS1394ENUMERATOR_H
24
 
#define HSS1394ENUMERATOR_H
25
 
 
26
 
#include "midideviceenumerator.h"
27
 
 
28
 
class Hss1394Enumerator : public MidiDeviceEnumerator
29
 
{
30
 
    public:
31
 
        Hss1394Enumerator();
32
 
        ~Hss1394Enumerator();
33
 
        QList<MidiDevice*> queryDevices();
34
 
    private:
35
 
        QList<MidiDevice*> m_devices;
36
 
};
37
 
 
38
 
#endif
 
 
b'\\ No newline at end of file'