more MTC stuff, including toggleable use of torben's PI controller
[ardour.git] / libs / ardour / ardour / click.h
index 60499b98dac73606d3d4f8bab5056eb93126cbba..50efe7ce46e40ed18493378faaf794d47714c572 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2004 Paul Davis 
+    Copyright (C) 2004 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #ifndef __ardour_click_h__
 #define __ardour_click_h__
 
-#include <ardour/io.h>
+#include "ardour/io.h"
 
 namespace ARDOUR {
 
 class ClickIO : public IO
 {
-  public:
-       ClickIO (Session& s, const string& name, 
-
-              int input_min = -1, int input_max = -1, 
-
-              int output_min = -1, int output_max = -1)
-       : IO (s, name, input_min, input_max, output_min, output_max) {}
-
+public:
+       ClickIO (Session& s, const std::string& name) : IO (s, name, IO::Output) {}
        ~ClickIO() {}
 
-  protected:
+protected:
        uint32_t pans_required () const { return 1; }
 };