Fix ambiguity introduced in 91ed9840d
[ardour.git] / libs / surfaces / us2400 / jog.h
1 /*
2         Copyright (C) 2006,2007 John Anderson
3         Copyright (C) 2012 Paul Davis
4         Copyright (C) 2017 Ben Loftis
5
6
7         This program is free software; you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation; either version 2 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program; if not, write to the Free Software
19         Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #ifndef __ardour_us2400_control_protocol_jog_h__
23 #define __ardour_us2400_control_protocol_jog_h__
24
25 #include "controls.h"
26 #include "pot.h"
27
28 namespace ArdourSurface {
29 namespace US2400 {
30
31 class Jog : public Pot
32 {
33 public:
34         static const int ID;
35
36         Jog (int id, std::string name, Group & group)
37                 : Pot  (id, name, group)
38         {
39         }
40
41         MidiByteArray zero() { return MidiByteArray(); }
42
43         static Control* factory (Surface&, int id, const char*, Group&);
44 };
45
46 }
47 }
48
49 #endif /* __ardour_us2400_control_protocol_jog_h__ */