]> git.tdb.fi Git - libs/net.git/blobdiff - source/net/communicator.h
Decorate things which constitute the public API
[libs/net.git] / source / net / communicator.h
index 822b16ef998dbd706d1ea1617950175d488496ca..e9f646a59a62ba1f0796a36cf57f2d27454d849d 100644 (file)
@@ -2,7 +2,9 @@
 #define MSP_NET_COMMUNICATOR_H_
 
 #include <msp/core/except.h>
+#include <msp/core/noncopyable.h>
 #include <sigc++/signal.h>
+#include "mspnet_api.h"
 #include "protocol.h"
 
 namespace Msp {
@@ -10,20 +12,20 @@ namespace Net {
 
 class StreamSocket;
 
-class sequence_error: public invalid_state
+class MSPNET_API sequence_error: public invalid_state
 {
 public:
        sequence_error(const std::string &w): invalid_state(w) { }
 };
 
-class incompatible_protocol: public std::runtime_error
+class MSPNET_API incompatible_protocol: public std::runtime_error
 {
 public:
        incompatible_protocol(const std::string &w): std::runtime_error(w) { }
 };
 
 
-class Communicator
+class MSPNET_API Communicator: public NonCopyable
 {
 public:
        sigc::signal<void> signal_handshake_done;