Thread: [asycxx-devel] SF.net SVN: asycxx:[8] trunk/include/asycxx
Status: Alpha
Brought to you by:
joe_steeve
From: <joe...@us...> - 2009-03-12 09:42:38
|
Revision: 8 http://asycxx.svn.sourceforge.net/asycxx/?rev=8&view=rev Author: joe_steeve Date: 2009-03-12 09:42:31 +0000 (Thu, 12 Mar 2009) Log Message: ----------- fixed wrapping macros in header From: Joe Steeve <js...@hi...> Modified Paths: -------------- trunk/include/asycxx/Error.h trunk/include/asycxx/Logger.h trunk/include/asycxx/XMLParser.h trunk/include/asycxx/_asycxx.h trunk/include/asycxx/asycxx.h Modified: trunk/include/asycxx/Error.h =================================================================== --- trunk/include/asycxx/Error.h 2009-03-12 09:40:41 UTC (rev 7) +++ trunk/include/asycxx/Error.h 2009-03-12 09:42:31 UTC (rev 8) @@ -11,8 +11,8 @@ * *******************************************************************/ -#ifndef __HIPRO__ERROR_H__ -#define __HIPRO__ERROR_H__ +#ifndef __HIPRO_ASYCXX__ERROR_H__ +#define __HIPRO_ASYCXX__ERROR_H__ #ifdef HAVE_CONFIG_H #include <asycxx-config.h> Modified: trunk/include/asycxx/Logger.h =================================================================== --- trunk/include/asycxx/Logger.h 2009-03-12 09:40:41 UTC (rev 7) +++ trunk/include/asycxx/Logger.h 2009-03-12 09:42:31 UTC (rev 8) @@ -11,8 +11,8 @@ * *******************************************************************/ -#ifndef __HIPRO__LOGGER_H__ -#define __HIPRO__LOGGER_H__ +#ifndef __HIPRO_ASYCXX__LOGGER_H__ +#define __HIPRO_ASYCXX__LOGGER_H__ #include <stdarg.h> @@ -34,7 +34,7 @@ // void LogToFile (const char *fmt, va_list args); }; -#endif // __HIPRO__LOGGER_H__ +#endif // __HIPRO_ASYCXX__LOGGER_H__ /* Local Variables: Modified: trunk/include/asycxx/XMLParser.h =================================================================== --- trunk/include/asycxx/XMLParser.h 2009-03-12 09:40:41 UTC (rev 7) +++ trunk/include/asycxx/XMLParser.h 2009-03-12 09:42:31 UTC (rev 8) @@ -42,7 +42,7 @@ }; -#endif /* __ACW__XML_PARSER_H__ */ +#endif /* __HIPRO_ACW__XML_PARSER_H__ */ /* Local Variables: Modified: trunk/include/asycxx/_asycxx.h =================================================================== --- trunk/include/asycxx/_asycxx.h 2009-03-12 09:40:41 UTC (rev 7) +++ trunk/include/asycxx/_asycxx.h 2009-03-12 09:42:31 UTC (rev 8) @@ -11,8 +11,8 @@ * *******************************************************************/ -#ifndef __HIPRO_ACW___ASYCXX_H__ -#define __HIPRO_ACW___ASYCXX_H__ +#ifndef __HIPRO_ASYCXX___ASYCXX_H__ +#define __HIPRO_ASYCXX___ASYCXX_H__ enum Result { @@ -26,7 +26,7 @@ typedef long long h_msecs_t; typedef long long h_timestamp_t; -#endif /* __HIPRO_ACW___ASYCXX_H__ */ +#endif /* __HIPRO_ASYCXX___ASYCXX_H__ */ /* Local Variables: Modified: trunk/include/asycxx/asycxx.h =================================================================== --- trunk/include/asycxx/asycxx.h 2009-03-12 09:40:41 UTC (rev 7) +++ trunk/include/asycxx/asycxx.h 2009-03-12 09:42:31 UTC (rev 8) @@ -16,7 +16,7 @@ #include "_asycxx.h" -#endif /* __HIPRO_ACW__XML_PARSER_H__ */ +#endif /* __HIPRO_ACW__ASYCXX_H__ */ /* Local Variables: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <viv...@us...> - 2009-03-24 09:16:09
|
Revision: 21 http://asycxx.svn.sourceforge.net/asycxx/?rev=21&view=rev Author: vivekanand83 Date: 2009-03-24 09:15:58 +0000 (Tue, 24 Mar 2009) Log Message: ----------- Removed reference of asycxx-config.h from installable headers. Modified Paths: -------------- trunk/include/asycxx/DataBuffer.h trunk/include/asycxx/Error.h trunk/include/asycxx/Factory.h trunk/include/asycxx/GimpleMsgBus.h trunk/include/asycxx/Listener.h trunk/include/asycxx/MsgBus.h trunk/include/asycxx/MsgHandler.h trunk/include/asycxx/Protocol.h trunk/include/asycxx/RAWCANListener.h trunk/include/asycxx/RAWCANTransport.h trunk/include/asycxx/Reactor.h trunk/include/asycxx/RefCounter.h trunk/include/asycxx/SelectReactor.h trunk/include/asycxx/TCPLLTransport.h trunk/include/asycxx/TCPListener.h trunk/include/asycxx/TCPTransport.h trunk/include/asycxx/Timer.h trunk/include/asycxx/Transport.h Modified: trunk/include/asycxx/DataBuffer.h =================================================================== --- trunk/include/asycxx/DataBuffer.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/DataBuffer.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__DATA_BUFFER_H__ #define __HIPRO_ASYCXX__DATA_BUFFER_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include <sys/types.h> Modified: trunk/include/asycxx/Error.h =================================================================== --- trunk/include/asycxx/Error.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/Error.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,10 +14,6 @@ #ifndef __HIPRO_ASYCXX__ERROR_H__ #define __HIPRO_ASYCXX__ERROR_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - #include <stdarg.h> #define THROW(x, fmt, ...) throw x("[%s:%d] " fmt "\n", \ Modified: trunk/include/asycxx/Factory.h =================================================================== --- trunk/include/asycxx/Factory.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/Factory.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,10 +14,6 @@ #ifndef __HIPRO_ASYCXX__FACTORY_H__ #define __HIPRO_ASYCXX__FACTORY_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - #include "Error.h" #include "Reactor.h" #include "Transport.h" Modified: trunk/include/asycxx/GimpleMsgBus.h =================================================================== --- trunk/include/asycxx/GimpleMsgBus.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/GimpleMsgBus.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,10 +14,6 @@ #ifndef __HIPRO_ASYCXX__GIMPLE_MSG_BUS_H__ #define __HIPRO_ASYCXX__GIMPLE_MSG_BUS_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - #include <stdint.h> #include <deque> Modified: trunk/include/asycxx/Listener.h =================================================================== --- trunk/include/asycxx/Listener.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/Listener.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,10 +14,6 @@ #ifndef __HIPRO_ASYCXX__LISTENER_H__ #define __HIPRO_ASYCXX__LISTENER_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - #include "Error.h" #include "Reactor.h" Modified: trunk/include/asycxx/MsgBus.h =================================================================== --- trunk/include/asycxx/MsgBus.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/MsgBus.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__MSG_BUS_H__ #define __HIPRO_ASYCXX__MSG_BUS_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include "DataBuffer.h" Modified: trunk/include/asycxx/MsgHandler.h =================================================================== --- trunk/include/asycxx/MsgHandler.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/MsgHandler.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__MSG_HANDLER_H__ #define __HIPRO_ASYCXX__MSG_HANDLER_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include "DataBuffer.h" #include "MsgBus.h" Modified: trunk/include/asycxx/Protocol.h =================================================================== --- trunk/include/asycxx/Protocol.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/Protocol.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,10 +14,6 @@ #ifndef __HIPRO_ASYCXX__PROTOCOL_H__ #define __HIPRO_ASYCXX__PROTOCOL_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - #include "Error.h" #include "Reactor.h" #include "DataBuffer.h" Modified: trunk/include/asycxx/RAWCANListener.h =================================================================== --- trunk/include/asycxx/RAWCANListener.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/RAWCANListener.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__RAW_CAN_LISTENER_H__ #define __HIPRO_ASYCXX__RAW_CAN_LISTENER_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include <sys/types.h> #include <arpa/inet.h> Modified: trunk/include/asycxx/RAWCANTransport.h =================================================================== --- trunk/include/asycxx/RAWCANTransport.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/RAWCANTransport.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__CAN_TRANSPORT_H__ #define __HIPRO_ASYCXX__CAN_TRANSPORT_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include "Error.h" #include "Reactor.h" Modified: trunk/include/asycxx/Reactor.h =================================================================== --- trunk/include/asycxx/Reactor.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/Reactor.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__REACTOR_H__ #define __HIPRO_ASYCXX__REACTOR_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include <deque> Modified: trunk/include/asycxx/RefCounter.h =================================================================== --- trunk/include/asycxx/RefCounter.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/RefCounter.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__REF_COUNTER_H__ #define __HIPRO_ASYCXX__REF_COUNTER_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include "Error.h" Modified: trunk/include/asycxx/SelectReactor.h =================================================================== --- trunk/include/asycxx/SelectReactor.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/SelectReactor.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__SELECT_REACTOR_H__ #define __HIPRO_ASYCXX__SELECT_REACTOR_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include <vector> Modified: trunk/include/asycxx/TCPLLTransport.h =================================================================== --- trunk/include/asycxx/TCPLLTransport.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/TCPLLTransport.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__TCP_LL_TRANSPORT_H__ #define __HIPRO_ASYCXX__TCP_LL_TRANSPORT_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include "Reactor.h" #include "TCPTransport.h" Modified: trunk/include/asycxx/TCPListener.h =================================================================== --- trunk/include/asycxx/TCPListener.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/TCPListener.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,10 +14,6 @@ #ifndef __HIPRO_ASYCXX__TCP_LISTENER_H__ #define __HIPRO_ASYCXX__TCP_LISTENER_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - #include <sys/types.h> #include <arpa/inet.h> Modified: trunk/include/asycxx/TCPTransport.h =================================================================== --- trunk/include/asycxx/TCPTransport.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/TCPTransport.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__TCP_TRANSPORT_H__ #define __HIPRO_ASYCXX__TCP_TRANSPORT_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include "Error.h" #include "Reactor.h" Modified: trunk/include/asycxx/Timer.h =================================================================== --- trunk/include/asycxx/Timer.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/Timer.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__TIMER_H__ #define __HIPRO_ASYCXX__TIMER_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include <vector> Modified: trunk/include/asycxx/Transport.h =================================================================== --- trunk/include/asycxx/Transport.h 2009-03-24 05:38:11 UTC (rev 20) +++ trunk/include/asycxx/Transport.h 2009-03-24 09:15:58 UTC (rev 21) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__TRANSPORT_H__ #define __HIPRO_ASYCXX__TRANSPORT_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include <deque> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <viv...@us...> - 2009-04-16 13:14:21
|
Revision: 54 http://asycxx.svn.sourceforge.net/asycxx/?rev=54&view=rev Author: vivekanand83 Date: 2009-04-16 13:14:18 +0000 (Thu, 16 Apr 2009) Log Message: ----------- removed reference of asycxx-config.h from StreamProtocol*.h Modified Paths: -------------- trunk/include/asycxx/StreamProtocol.h trunk/include/asycxx/StreamProtocolFactory.h Modified: trunk/include/asycxx/StreamProtocol.h =================================================================== --- trunk/include/asycxx/StreamProtocol.h 2009-04-08 11:28:12 UTC (rev 53) +++ trunk/include/asycxx/StreamProtocol.h 2009-04-16 13:14:18 UTC (rev 54) @@ -14,9 +14,6 @@ #ifndef __HIPRO_ASYCXX__STREAM_PROTOCOL_H__ #define __HIPRO_ASYCXX__STREAM_PROTOCOL_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif #include "Error.h" #include "Reactor.h" Modified: trunk/include/asycxx/StreamProtocolFactory.h =================================================================== --- trunk/include/asycxx/StreamProtocolFactory.h 2009-04-08 11:28:12 UTC (rev 53) +++ trunk/include/asycxx/StreamProtocolFactory.h 2009-04-16 13:14:18 UTC (rev 54) @@ -14,10 +14,6 @@ #ifndef __HIPRO_ASYCXX__STREAM_PROTOCOL_FACTORY_H__ #define __HIPRO_ASYCXX__STREAM_PROTOCOL_FACTORY_H__ -#ifdef HAVE_CONFIG_H -#include <asycxx-config.h> -#endif - #include "Error.h" #include "Reactor.h" #include "ProtocolFactory.h" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |