summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 1abcc57f41..2b12414eec 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -56,8 +56,6 @@ using namespace std;
using namespace ARDOUR;
using namespace PBD;
-PBD::Signal1<void,Processor*> Processor::ProcessorCreated;
-
// Always saved as Processor, but may be IOProcessor or Send in legacy sessions
const string Processor::state_node_name = "Processor";
@@ -73,19 +71,6 @@ Processor::Processor(Session& session, const string& name)
{
}
-Processor::Processor (Session& session, const XMLNode& node)
- : SessionObject(session, "renameMe")
- , AutomatableControls(session)
- , _pending_active(false)
- , _active(false)
- , _next_ab_is_active(false)
- , _configured(false)
- , _gui(0)
- , _display_to_user (true)
-{
- set_state (node, Stateful::loading_state_version);
-}
-
XMLNode&
Processor::get_state (void)
{