X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Ftextreceiver.h;h=c9a1d0aecc3dc1526879459b11f3fd35a9ddd0d8;hb=0aac62e013e15e380001dafae39d554f8765a4a1;hp=b8bfe5bc7824b0c9e0362bbcf2162a536313c53c;hpb=22c20ab6f215c0ab24702a479aa6821c25a7d058;p=ardour.git diff --git a/libs/pbd/pbd/textreceiver.h b/libs/pbd/pbd/textreceiver.h index b8bfe5bc78..c9a1d0aecc 100644 --- a/libs/pbd/pbd/textreceiver.h +++ b/libs/pbd/pbd/textreceiver.h @@ -15,7 +15,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __libmisc_textreceiver_h__ @@ -25,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__