X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Ftextreceiver.h;h=c9a1d0aecc3dc1526879459b11f3fd35a9ddd0d8;hb=54bf06e63cee78dfa218f604d862e577d0f5754c;hp=e5900fc6528477e7b40b7b207db7cae537e01d88;hpb=45d3ec1437cf661533bc7750c623865def4424df;p=ardour.git 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__