diff options
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/BlockModel.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ingen/client/BlockModel.hpp b/ingen/client/BlockModel.hpp index e689414c..bd8b336a 100644 --- a/ingen/client/BlockModel.hpp +++ b/ingen/client/BlockModel.hpp @@ -36,8 +36,9 @@ class URIs; namespace Client { -class PluginModel; class ClientStore; +class GroupModel; +class PluginModel; /** Block model class, used by the client to store engine's state. * @@ -81,6 +82,8 @@ public: // Signals INGEN_SIGNAL(new_port, void, SPtr<const PortModel>); INGEN_SIGNAL(removed_port, void, SPtr<const PortModel>); + INGEN_SIGNAL(new_group, void, SPtr<const GroupModel>); + INGEN_SIGNAL(removed_group, void, SPtr<const GroupModel>); protected: friend class ClientStore; |