diff options
author | David Robillard <d@drobilla.net> | 2006-09-15 01:20:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-15 01:20:54 +0000 |
commit | a135a764751a356ac34c2f35f8ce2c009872f1fd (patch) | |
tree | fd70a03cad997bbaeac6bed50c5b17be442aad9e /src/progs/ingenuity/SubpatchModule.h | |
parent | f9f760893e4fa1ff850becf7d98bd4c6af8b8d73 (diff) | |
download | ingen-a135a764751a356ac34c2f35f8ce2c009872f1fd.tar.gz ingen-a135a764751a356ac34c2f35f8ce2c009872f1fd.tar.bz2 ingen-a135a764751a356ac34c2f35f8ce2c009872f1fd.zip |
Fixed FlowCanvas #include directives (to include FLOWCANVAS prefix).
Renamed classes/files in Ingenuity to make more sense (and kill "Om").
Patch port fixes.
git-svn-id: http://svn.drobilla.net/lad/ingen@136 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/progs/ingenuity/SubpatchModule.h')
-rw-r--r-- | src/progs/ingenuity/SubpatchModule.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/progs/ingenuity/SubpatchModule.h b/src/progs/ingenuity/SubpatchModule.h index 0f52ae2b..571ae0fd 100644 --- a/src/progs/ingenuity/SubpatchModule.h +++ b/src/progs/ingenuity/SubpatchModule.h @@ -20,9 +20,10 @@ #include <string> #include <libgnomecanvasmm.h> -#include "OmModule.h" +#include "NodeModule.h" #include "util/CountedPtr.h" #include "PatchModel.h" +#include "PatchPortModule.h" using std::string; using std::list; namespace Ingen { namespace Client { @@ -35,7 +36,7 @@ using namespace Ingen::Client; namespace Ingenuity { -class OmFlowCanvas; +class PatchCanvas; class NodeControlWindow; @@ -43,10 +44,10 @@ class NodeControlWindow; * * \ingroup Ingenuity */ -class SubpatchModule : public OmModule +class SubpatchModule : public NodeModule { public: - SubpatchModule(OmFlowCanvas* canvas, CountedPtr<PatchModel> controller); + SubpatchModule(PatchCanvas* canvas, CountedPtr<PatchModel> controller); virtual ~SubpatchModule() {} void on_double_click(GdkEventButton* ev); |