diff options
author | David Robillard <d@drobilla.net> | 2007-09-30 23:36:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-09-30 23:36:39 +0000 |
commit | 8450921d5309c5ba677997e7ca722a466c8dc222 (patch) | |
tree | 2c0fdf58f142be8f42222c3a580614cfbf0d7989 /src/libs/engine/events/DisablePatchEvent.hpp | |
parent | ffc6f457d61460ca73bb24a3d7e583f90d54ecd2 (diff) | |
download | ingen-8450921d5309c5ba677997e7ca722a466c8dc222.tar.gz ingen-8450921d5309c5ba677997e7ca722a466c8dc222.tar.bz2 ingen-8450921d5309c5ba677997e7ca722a466c8dc222.zip |
Working port notification for LV2 GUIs (ll-plugins VU meter works in Ingen now).
git-svn-id: http://svn.drobilla.net/lad/ingen@790 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/events/DisablePatchEvent.hpp')
-rw-r--r-- | src/libs/engine/events/DisablePatchEvent.hpp | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/src/libs/engine/events/DisablePatchEvent.hpp b/src/libs/engine/events/DisablePatchEvent.hpp deleted file mode 100644 index 1a208246..00000000 --- a/src/libs/engine/events/DisablePatchEvent.hpp +++ /dev/null @@ -1,53 +0,0 @@ -/* This file is part of Ingen. - * Copyright (C) 2007 Dave Robillard <http://drobilla.net> - * - * Ingen 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. - * - * Ingen 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 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 St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef DISABLEPATCHEVENT_H -#define DISABLEPATCHEVENT_H - -#include <string> -#include "QueuedEvent.hpp" - -using std::string; - -namespace Ingen { - -class Patch; - - -/** Disables a Patch's DSP processing. - * - * \ingroup engine - */ -class DisablePatchEvent : public QueuedEvent -{ -public: - DisablePatchEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& patch_path); - - void pre_process(); - void execute(ProcessContext& context); - void post_process(); - -private: - string _patch_path; - Patch* _patch; -}; - - -} // namespace Ingen - - -#endif // DISABLEPATCHEVENT_H |