This commit is contained in:
Vincent Richard 2014-04-01 22:39:26 +02:00
commit 8a6b959cf0
5 changed files with 5 additions and 4 deletions

View File

@ -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

View File

@ -58,7 +58,7 @@ public:
/** Stores information about a file attachment.
*/
class fileInfo
class VMIME_EXPORT fileInfo
{
public:

View File

@ -59,7 +59,7 @@ public:
/** Embedded object (eg: image for <IMG> tag).
*/
class embeddedObject : public object
class VMIME_EXPORT embeddedObject : public object
{
public:

View File

@ -65,7 +65,7 @@ public:
/** A service property.
*/
class property
class VMIME_EXPORT property
{
public:

View File

@ -73,6 +73,7 @@ public:
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();