summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-01-21 02:42:53 +0000
committerCarl Hetherington <carl@carlh.net>2012-01-21 02:42:53 +0000
commit17e6f1952e4073fb864354438fed57d5e10ec617 (patch)
tree4e87e02a7b1b7fab3ddbe72142c7159d031b6763 /libs/ardour/ardour
parent5a53f2f1b9977e909f7720c9aa30333b0ec0572b (diff)
Remove unused code.
git-svn-id: svn://localhost/ardour2/branches/3.0@11289 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/audioregion.h2
-rw-r--r--libs/ardour/ardour/gain.h42
2 files changed, 1 insertions, 43 deletions
diff --git a/libs/ardour/ardour/audioregion.h b/libs/ardour/ardour/audioregion.h
index 9a78ab98f8..e385863efa 100644
--- a/libs/ardour/ardour/audioregion.h
+++ b/libs/ardour/ardour/audioregion.h
@@ -28,7 +28,7 @@
#include "ardour/ardour.h"
#include "ardour/automatable.h"
-#include "ardour/gain.h"
+#include "ardour/automation_list.h"
#include "ardour/logcurve.h"
#include "ardour/region.h"
diff --git a/libs/ardour/ardour/gain.h b/libs/ardour/ardour/gain.h
deleted file mode 100644
index a9e090fab2..0000000000
--- a/libs/ardour/ardour/gain.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- Copyright (C) 2000 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
- 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_gain_h__
-#define __ardour_gain_h__
-
-#include "ardour.h"
-#include "automation_list.h"
-
-namespace ARDOUR {
-
-struct Gain : public AutomationList
-{
- Gain ();
- Gain (const Gain&);
- Gain& operator= (const Gain&);
-
- static void fill_linear_fade_in (Gain& curve, framecnt_t frames);
- static void fill_linear_volume_fade_in (Gain& curve, framecnt_t frames);
- static void fill_linear_fade_out (Gain& curve, framecnt_t frames);
- static void fill_linear_volume_fade_out (Gain& curve, framecnt_t frames);
-};
-
-} /* namespace ARDOUR */
-
-#endif /* __ardour_gain_h__ */