Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/kisli/vmime
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-richard committed Apr 1, 2014
2 parents c08d814 + 32bd8e4 commit 8a6b959
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -1020,7 +1020,7 @@ ELSE()

SET(
CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} -D_REENTRANT=1 -W -Wall -ansi -pedantic -Wpointer-arith -Wold-style-cast -Wconversion -Wcast-align -Wno-long-long"
"${CMAKE_CXX_FLAGS} -D_REENTRANT=1 -W -Wall -pedantic -Wpointer-arith -Wold-style-cast -Wconversion -Wcast-align -Wno-long-long"
CACHE STRING
"g++ Compiler Flags"
FORCE
Expand Down
2 changes: 1 addition & 1 deletion src/vmime/fileAttachment.hpp
Expand Up @@ -58,7 +58,7 @@ class VMIME_EXPORT fileAttachment : public defaultAttachment

/** Stores information about a file attachment.
*/
class fileInfo
class VMIME_EXPORT fileInfo
{
public:

Expand Down
2 changes: 1 addition & 1 deletion src/vmime/htmlTextPart.hpp
Expand Up @@ -59,7 +59,7 @@ class VMIME_EXPORT htmlTextPart : public textPart

/** Embedded object (eg: image for <IMG> tag).
*/
class embeddedObject : public object
class VMIME_EXPORT embeddedObject : public object
{
public:

Expand Down
2 changes: 1 addition & 1 deletion src/vmime/net/serviceInfos.hpp
Expand Up @@ -65,7 +65,7 @@ class VMIME_EXPORT serviceInfos

/** A service property.
*/
class property
class VMIME_EXPORT property
{
public:

Expand Down
1 change: 1 addition & 0 deletions src/vmime/platforms/windows/windowsSocket.hpp
Expand Up @@ -73,6 +73,7 @@ class windowsSocket : public vmime::net::socket
const string getPeerAddress() const;

shared_ptr <net::timeoutHandler> getTimeoutHandler();
shared_ptr <net::tracer> m_tracer;

void setTracer(shared_ptr <net::tracer> tracer);
shared_ptr <net::tracer> getTracer();
Expand Down

0 comments on commit 8a6b959

Please sign in to comment.