moved LADSPA-base-code from separate library into LMMS-core

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@557 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2007-09-03 20:02:11 +00:00
parent b571ffb730
commit d60bff7898

80
include/ladspa_2_lmms.h Normal file
View File

@@ -0,0 +1,80 @@
/*
* ladspa_2_lmms.h - class that identifies and instantiates LADSPA effects
* for use with LMMS
*
* Copyright (c) 2005-2007 Danny McRae <khjklujn@netscape.net>
*
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.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 (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/
#ifndef _LADSPA_2_LMMS_H
#define _LADSPA_2_LMMS_H
#include "ladspa_manager.h"
class ladspa2LMMS: public ladspaManager
{
public:
inline l_sortable_plugin_t getInstruments( void )
{
return( m_instruments );
}
inline l_sortable_plugin_t getValidEffects( void )
{
return( m_validEffects );
}
inline l_sortable_plugin_t getInvalidEffects( void )
{
return( m_invalidEffects );
}
inline l_sortable_plugin_t getAnalysisTools( void )
{
return( m_analysisTools );
}
inline l_sortable_plugin_t getOthers( void )
{
return( m_otherPlugins );
}
QString getShortName( const ladspa_key_t & _key );
private:
ladspa2LMMS( void );
~ladspa2LMMS();
// ladspaManager * m_ladspa;
l_sortable_plugin_t m_instruments;
l_sortable_plugin_t m_validEffects;
l_sortable_plugin_t m_invalidEffects;
l_sortable_plugin_t m_analysisTools;
l_sortable_plugin_t m_otherPlugins;
friend class engine;
};
#endif