X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Ftextreceiver.h;h=9fe7e0828da9ecc791c4d39a61d3b882a8148f6e;hb=36c233fe6ce570ce85224626ce7aba4a2607537f;hp=e5900fc6528477e7b40b7b207db7cae537e01d88;hpb=45d3ec1437cf661533bc7750c623865def4424df;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__