2008-09-10 15:03:30 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2009 David Robillard <d@drobilla.net>
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2008-09-10 15:03:30 +00:00
|
|
|
|
2024-09-25 18:38:59 -06:00
|
|
|
#pragma once
|
2008-09-10 15:03:30 +00:00
|
|
|
|
|
|
|
|
#include <vector>
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/plugin.h"
|
2008-09-10 15:03:30 +00:00
|
|
|
|
|
|
|
|
typedef std::vector<ARDOUR::PluginPtr> SelectedPlugins;
|
|
|
|
|
|
2017-07-01 21:11:14 +02:00
|
|
|
class PluginInterestedObject
|
|
|
|
|
{
|
|
|
|
|
public:
|
2008-09-10 15:03:30 +00:00
|
|
|
PluginInterestedObject() {}
|
|
|
|
|
virtual ~PluginInterestedObject() {}
|
|
|
|
|
|
2010-04-27 19:58:31 +00:00
|
|
|
virtual bool use_plugins (const SelectedPlugins&) = 0;
|
2008-09-10 15:03:30 +00:00
|
|
|
};
|
|
|
|
|
|