Merge branch 'master' into cairocanvas
[ardour.git] / libs / pbd / pbd / textreceiver.h
index b8bfe5bc7824b0c9e0362bbcf2162a536313c53c..9fe7e0828da9ecc791c4d39a61d3b882a8148f6e 100644 (file)
@@ -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__
 
 #include <string>
 
+#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__