summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/textreceiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/textreceiver.h')
-rw-r--r--libs/pbd/pbd/textreceiver.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/libs/pbd/pbd/textreceiver.h b/libs/pbd/pbd/textreceiver.h
index e5900fc652..c9a1d0aecc 100644
--- a/libs/pbd/pbd/textreceiver.h
+++ b/libs/pbd/pbd/textreceiver.h
@@ -24,20 +24,16 @@
#include "receiver.h"
-using std::string;
-using std::cout;
-using std::endl;
-
class TextReceiver : public Receiver
{
public:
- TextReceiver (const string &n);
+ TextReceiver (const std::string &n);
protected:
void receive (Transmitter::Channel, const char *);
private:
- string name;
+ std::string name;
};
#endif //__libmisc_textreceiver_h__