2008-09-10 11:03:30 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04: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 11:03:30 -04:00
|
|
|
|
|
|
|
#ifndef __gtkardour_plugin_interest_h__
|
|
|
|
#define __gtkardour_plugin_interest_h__
|
|
|
|
|
|
|
|
#include <vector>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/plugin.h"
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
typedef std::vector<ARDOUR::PluginPtr> SelectedPlugins;
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
class PluginInterestedObject
|
|
|
|
{
|
|
|
|
public:
|
2008-09-10 11:03:30 -04:00
|
|
|
PluginInterestedObject() {}
|
|
|
|
virtual ~PluginInterestedObject() {}
|
|
|
|
|
2010-04-27 15:58:31 -04:00
|
|
|
virtual bool use_plugins (const SelectedPlugins&) = 0;
|
2008-09-10 11:03:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtkardour_plugin_interest_h__ */
|