diff options
author | David Robillard <d@drobilla.net> | 2006-09-11 19:57:59 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-11 19:57:59 +0000 |
commit | 16c866f220847ae23012318d2c1a5023076ab5fa (patch) | |
tree | 1cd383ecbe4d3b800423b9860691d89eba2e8a52 /src/libs/client/PortModel.h | |
parent | b15864870d34a1188eda93ad215734275037278e (diff) | |
download | ingen-16c866f220847ae23012318d2c1a5023076ab5fa.tar.gz ingen-16c866f220847ae23012318d2c1a5023076ab5fa.tar.bz2 ingen-16c866f220847ae23012318d2c1a5023076ab5fa.zip |
Bug fixes.
git-svn-id: http://svn.drobilla.net/lad/ingen@129 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/PortModel.h')
-rw-r--r-- | src/libs/client/PortModel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/client/PortModel.h b/src/libs/client/PortModel.h index 7b84c95a..1f816748 100644 --- a/src/libs/client/PortModel.h +++ b/src/libs/client/PortModel.h @@ -70,7 +70,8 @@ public: { } - void add_child(CountedPtr<ObjectModel> c) { throw; } + void add_child(CountedPtr<ObjectModel> c) { throw; } + void remove_child(CountedPtr<ObjectModel> c) { throw; } inline float min_val() const { return m_min_val; } inline float user_min() const { return atof(get_metadata("min").c_str()); } // FIXME: haaack |