X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Ftextreceiver.h;h=3fad63f66c67d3db870a71d48d64ec6349354db6;hb=7d880912291992392131b2928482d77d3505f126;hp=e5900fc6528477e7b40b7b207db7cae537e01d88;hpb=449aab3c465bbbf66d221fac3d7ea559f1720357;p=ardour.git diff --git a/libs/pbd/pbd/textreceiver.h b/libs/pbd/pbd/textreceiver.h index e5900fc652..3fad63f66c 100644 --- a/libs/pbd/pbd/textreceiver.h +++ b/libs/pbd/pbd/textreceiver.h @@ -1,5 +1,5 @@ /* - Copyright (C) 1998-99 Paul Barton-Davis + Copyright (C) 1998-99 Paul Barton-Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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__