summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/PortModel.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/client/PortModel.cpp b/src/client/PortModel.cpp
index 73f273c7..48d70774 100644
--- a/src/client/PortModel.cpp
+++ b/src/client/PortModel.cpp
@@ -23,6 +23,7 @@
#include "lv2/urid/urid.h"
#include <cstdint>
+#include <exception>
#include <map>
#include <memory>
#include <utility>
@@ -71,6 +72,18 @@ PortModel::is_uri() const
}
void
+PortModel::add_child(const std::shared_ptr<ObjectModel>&)
+{
+ std::terminate();
+}
+
+bool
+PortModel::remove_child(const std::shared_ptr<ObjectModel>&)
+{
+ std::terminate();
+}
+
+void
PortModel::set(const std::shared_ptr<ObjectModel>& model)
{
ObjectModel::set(model);