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( SET(
CMAKE_CXX_FLAGS 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 CACHE STRING
"g++ Compiler Flags" "g++ Compiler Flags"
FORCE FORCE

View File

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

View File

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

View File

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

View File

@ -73,6 +73,7 @@ public:
const string getPeerAddress() const; const string getPeerAddress() const;
shared_ptr <net::timeoutHandler> getTimeoutHandler(); shared_ptr <net::timeoutHandler> getTimeoutHandler();
shared_ptr <net::tracer> m_tracer;
void setTracer(shared_ptr <net::tracer> tracer); void setTracer(shared_ptr <net::tracer> tracer);
shared_ptr <net::tracer> getTracer(); shared_ptr <net::tracer> getTracer();