summaryrefslogtreecommitdiffstats
path: root/src/PatchageModule.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-09 20:59:40 +0000
committerDavid Robillard <d@drobilla.net>2011-01-09 20:59:40 +0000
commitc1775fa65273b5f5590a0319563159b13e901fbb (patch)
treee6704c3948b2b6204eec93621d71ceeb50ee1dfd /src/PatchageModule.hpp
parent9a1cd7003886f89e2228d74d61130dc5d24c06a3 (diff)
downloadpatchage-c1775fa65273b5f5590a0319563159b13e901fbb.tar.gz
patchage-c1775fa65273b5f5590a0319563159b13e901fbb.tar.bz2
patchage-c1775fa65273b5f5590a0319563159b13e901fbb.zip
Code cleanups (cpplint).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2804 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageModule.hpp')
-rw-r--r--src/PatchageModule.hpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp
index 3e7bcbd..734ff0f 100644
--- a/src/PatchageModule.hpp
+++ b/src/PatchageModule.hpp
@@ -24,18 +24,16 @@
#include "StateManager.hpp"
-using namespace FlowCanvas;
-
class Patchage;
-class PatchageModule : public Module
+class PatchageModule : public FlowCanvas::Module
{
public:
PatchageModule(Patchage* app, const std::string& name, ModuleType type, double x=0, double y=0);
~PatchageModule();
- void add_port(boost::shared_ptr<Port> port);
- void remove_port(boost::shared_ptr<Port> port);
+ void add_port(boost::shared_ptr<FlowCanvas::Port> port);
+ void remove_port(boost::shared_ptr<FlowCanvas::Port> port);
void split();
void join();