X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Ftextreceiver.h;h=9fe7e0828da9ecc791c4d39a61d3b882a8148f6e;hb=5399425f534e2d96d07cf29f427bfa0f39d904b7;hp=e5900fc6528477e7b40b7b207db7cae537e01d88;hpb=6edccc3070b813157ffcd4014ec8dd7fa6ed9ce7;p=ardour.git diff --git a/libs/pbd/pbd/textreceiver.h b/libs/pbd/pbd/textreceiver.h index e5900fc652..9fe7e0828d 100644 --- a/libs/pbd/pbd/textreceiver.h +++ b/libs/pbd/pbd/textreceiver.h @@ -22,22 +22,19 @@ #include +#include "pbd/libpbd_visibility.h" #include "receiver.h" -using std::string; -using std::cout; -using std::endl; - -class TextReceiver : public Receiver +class LIBPBD_API 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__