diff options
Diffstat (limited to 'src/plugins/Effect/ladspa/ladspahost.h')
| -rw-r--r-- | src/plugins/Effect/ladspa/ladspahost.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/Effect/ladspa/ladspahost.h b/src/plugins/Effect/ladspa/ladspahost.h index 131f874bd..02f260b91 100644 --- a/src/plugins/Effect/ladspa/ladspahost.h +++ b/src/plugins/Effect/ladspa/ladspahost.h @@ -1,7 +1,7 @@ /*************************************************************************** * Copyright (C) 2002,2003 Nick Lamb <njl195@zepler.org.uk> * * Copyright (C) 2005 Giacomo Lozito <city_hunter@users.sf.net> * - * Copyright (C) 2009-2020 by Ilya Kotov <forkotov02@ya.ru> * + * Copyright (C) 2009-2020 by Ilya Kotov <forkotov02@ya.ru> * * * * 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 * @@ -77,14 +77,14 @@ class LADSPAHost : public QObject { Q_OBJECT public: - LADSPAHost(QObject *parent); + explicit LADSPAHost(QObject *parent); virtual ~LADSPAHost(); int applyEffect(float *data, size_t samples); void configure(quint32 freq, int chan); - QList <LADSPAPlugin *> plugins(); - QList <LADSPAEffect *> effects(); + const QList<LADSPAPlugin *> &plugins() const; + const QList<LADSPAEffect *> &effects() const; void load(LADSPAPlugin *plugin); void unload(LADSPAEffect *effect); |
