summaryrefslogtreecommitdiffstats
path: root/src/PatchagePort.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PatchagePort.hpp')
-rw-r--r--src/PatchagePort.hpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp
index 6783434..c343d58 100644
--- a/src/PatchagePort.hpp
+++ b/src/PatchagePort.hpp
@@ -34,19 +34,16 @@
#include <alsa/asoundlib.h>
#endif
-using namespace FlowCanvas;
-
-
/** A Port on a PatchageModule
*/
class PatchagePort : public FlowCanvas::Port
{
public:
- PatchagePort(boost::shared_ptr<Module> module,
- PortType type,
- const std::string& name,
- bool is_input,
- uint32_t color)
+ PatchagePort(boost::shared_ptr<FlowCanvas::Module> module,
+ PortType type,
+ const std::string& name,
+ bool is_input,
+ uint32_t color)
: Port(module, name, is_input, color)
, _type(type)
{