summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/quantize.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-08-06 16:43:14 +0000
committerDavid Robillard <d@drobilla.net>2007-08-06 16:43:14 +0000
commitb0efb9f4347539279f6b4309d75fab8cb97140f4 (patch)
treee4e5b595b4d7ed63dcfe465b53dd2c44bb1352a4 /libs/ardour/ardour/quantize.h
parentb9b6ba8be490622dff662c23d9c77c9eee1291b3 (diff)
Added missing files.
git-svn-id: svn://localhost/ardour2/trunk@2258 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/quantize.h')
-rw-r--r--libs/ardour/ardour/quantize.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/libs/ardour/ardour/quantize.h b/libs/ardour/ardour/quantize.h
new file mode 100644
index 0000000000..143652dc63
--- /dev/null
+++ b/libs/ardour/ardour/quantize.h
@@ -0,0 +1,41 @@
+/*
+ Copyright (C) 2007 Paul Davis
+ Author: Dave Robillard
+
+ 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
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifndef __ardour_quantize_h__
+#define __ardour_quantize_h__
+
+#include <ardour/filter.h>
+
+namespace ARDOUR {
+
+class Quantize : public Filter {
+public:
+ Quantize (ARDOUR::Session&, double q);
+ ~Quantize ();
+
+ int run (boost::shared_ptr<ARDOUR::Region>);
+
+private:
+ double _q;
+};
+
+} /* namespace */
+
+#endif /* __ardour_quantize_h__ */