X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Ftextreceiver.h;h=9fe7e0828da9ecc791c4d39a61d3b882a8148f6e;hb=5399425f534e2d96d07cf29f427bfa0f39d904b7;hp=b8bfe5bc7824b0c9e0362bbcf2162a536313c53c;hpb=481f7c39655afec832ac10430dd61a3bb464aa58;p=ardour.git diff --git a/libs/pbd/pbd/textreceiver.h b/libs/pbd/pbd/textreceiver.h index b8bfe5bc78..9fe7e0828d 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__ @@ -23,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__