Browse Source

Fix missing export specifier in HttpRequest. Closes #957.

Lasse Öörni 10 years ago
parent
commit
e95542e9d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Urho3D/Network/HttpRequest.h

+ 1 - 1
Source/Urho3D/Network/HttpRequest.h

@@ -41,7 +41,7 @@ enum HttpRequestState
 };
 };
 
 
 /// An HTTP connection with response data stream.
 /// An HTTP connection with response data stream.
-class HttpRequest : public RefCounted, public Deserializer, public Thread
+class URHO3D_API HttpRequest : public RefCounted, public Deserializer, public Thread
 {
 {
 public:
 public:
     /// Construct with parameters.
     /// Construct with parameters.