faubackup2/src/network net_Byte.hpp,1.1.1.1,1.2 net_Integer.hpp,1.1.1.1,1.2 net_Package.hpp,1.2,1.3 net_String.hpp,1.1.1.1,1.2 network_com.cpp,1.4,1.5 network_com.hpp,1.2,1.3 network_item.hpp,1.2,1.3 network_receiver.cpp,1.3,1.4 network_receiver.hpp,1.2,1.3 network_sender.cpp,1.4,1.5 network_sender.hpp,1.2,1.3

Martin Waitz <[email protected]> Tue, 14 Jun 2005 22:10:34 +0000
Newsgroups gmane.comp.sysutils.backup.faubackup.cvs
Message-ID <[email protected]>
Update of /cvsroot/faubackup/faubackup2/src/network
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15666/src/network

Modified Files:
	net_Byte.hpp net_Integer.hpp net_Package.hpp net_String.hpp 
	network_com.cpp network_com.hpp network_item.hpp 
	network_receiver.cpp network_receiver.hpp network_sender.cpp 
	network_sender.hpp 
Log Message:
more include file cleanups...

Index: network_receiver.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/network_receiver.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** network_receiver.hpp	8 Jun 2005 19:29:05 -0000	1.2
--- network_receiver.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 2,12 ****
  #define __NetReceiver_include__
  
  #include <queue>
- #include "common/common.hpp"
- #include "network/network_item.hpp"
  #include "Threads/XThread.hpp"
  using std::queue;
  namespace faubackup
  {
  class NetworkReceiver
  {
--- 2,15 ----
  #define __NetReceiver_include__
  
+ #include <stdint.h>
  #include <queue>
  #include "Threads/XThread.hpp"
+ 
+ 
  using std::queue;
  namespace faubackup
  {
+ class NetworkItem;
+ 
  class NetworkReceiver
  {

Index: network_com.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/network_com.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** network_com.cpp	14 Jun 2005 20:23:35 -0000	1.4
--- network_com.cpp	14 Jun 2005 22:10:31 -0000	1.5
***************
*** 13,16 ****
--- 13,23 ----
  #include "common/common.hpp"
  #include "common/fileinfo.hpp"
+ #include "network/network_sender.hpp"
+ #include "network/network_receiver.hpp"
+ #include "network/network_item.hpp"
+ #include "network/net_Byte.hpp"
+ #include "network/net_Integer.hpp"
+ #include "network/net_Package.hpp"
+ #include "network/net_String.hpp"
  
  

Index: net_Package.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/net_Package.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** net_Package.hpp	3 Jun 2005 11:42:50 -0000	1.2
--- net_Package.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 2,8 ****
  #define __NetItemPackage_include__
  
  #include "common/types.hpp"
  #include "network/network_item.hpp"
! #include <string>
  using std::string;
  
--- 2,10 ----
  #define __NetItemPackage_include__
  
+ #include <string>
  #include "common/types.hpp"
  #include "network/network_item.hpp"
! 
! 
  using std::string;
  

Index: net_Byte.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/net_Byte.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** net_Byte.hpp	2 Jun 2005 09:31:13 -0000	1.1.1.1
--- net_Byte.hpp	14 Jun 2005 22:10:31 -0000	1.2
***************
*** 2,6 ****
  #define __NetItemByte_include__
  
! #include "common/types.hpp"
  #include "network/network_item.hpp"
  
--- 2,6 ----
  #define __NetItemByte_include__
  
! #include <stdint.h>
  #include "network/network_item.hpp"
  

Index: net_Integer.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/net_Integer.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** net_Integer.hpp	2 Jun 2005 09:31:13 -0000	1.1.1.1
--- net_Integer.hpp	14 Jun 2005 22:10:31 -0000	1.2
***************
*** 2,8 ****
  #define __NetItemInteger_include__
  
  #include "common/types.hpp"
  #include "network/network_item.hpp"
- #include <netinet/in.h>
  
  namespace faubackup
--- 2,8 ----
  #define __NetItemInteger_include__
  
+ #include <netinet/in.h>
  #include "common/types.hpp"
  #include "network/network_item.hpp"
  
  namespace faubackup

Index: network_com.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/network_com.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** network_com.hpp	8 Jun 2005 19:29:05 -0000	1.2
--- network_com.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 2,9 ****
  #define __NetCommunication_include__
  
! #include <netinet/in.h>
! #include <iostream>
! #include "network/network_sender.hpp"
! #include "network/network_receiver.hpp"
  
  using std::string;
--- 2,8 ----
  #define __NetCommunication_include__
  
! #include <stdint.h>
! #include <string>
! 
  
  using std::string;
***************
*** 14,17 ****
--- 13,18 ----
  namespace faubackup
  {
+ class NetworkReceiver;
+ class NetworkSender;
  
  /*!

Index: net_String.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/net_String.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** net_String.hpp	2 Jun 2005 09:31:13 -0000	1.1.1.1
--- net_String.hpp	14 Jun 2005 22:10:31 -0000	1.2
***************
*** 2,8 ****
  #define __NetItemString_include__
  
  #include "common/types.hpp"
  #include "network/network_item.hpp"
! #include <string>
  using std::string;
  
--- 2,10 ----
  #define __NetItemString_include__
  
+ #include <string>
  #include "common/types.hpp"
  #include "network/network_item.hpp"
! 
! 
  using std::string;
  

Index: network_sender.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/network_sender.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** network_sender.hpp	8 Jun 2005 19:29:05 -0000	1.2
--- network_sender.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 2,11 ****
  #define __NetSender_include__
  
  #include <queue>
- #include "network/network_item.hpp"
- #include "network/net_Integer.hpp"
- #include "network/net_Byte.hpp"
- #include "network/net_String.hpp"
- #include "network/net_Package.hpp"
  #include "Threads/XThread.hpp"
  
--- 2,7 ----
  #define __NetSender_include__
  
+ #include <stdint.h>
  #include <queue>
  #include "Threads/XThread.hpp"
  
***************
*** 13,16 ****
--- 9,14 ----
  namespace faubackup
  {
+ class NetworkItem;
+ 
  class NetworkSender
  {

Index: network_sender.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/network_sender.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** network_sender.cpp	14 Jun 2005 20:23:35 -0000	1.4
--- network_sender.cpp	14 Jun 2005 22:10:31 -0000	1.5
***************
*** 9,12 ****
--- 9,13 ----
  
  #include "common/common.hpp"
+ #include "network/network_item.hpp"
  
  /* have to be global */

Index: network_item.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/network_item.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** network_item.hpp	3 Jun 2005 11:42:50 -0000	1.2
--- network_item.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 2,6 ****
--- 2,9 ----
  #define __NetItem_include__
  
+ #include <stdint.h>
  #include "common/types.hpp"
+ 
+ 
  namespace faubackup
  {

Index: network_receiver.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/network/network_receiver.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** network_receiver.cpp	8 Jun 2005 19:29:05 -0000	1.3
--- network_receiver.cpp	14 Jun 2005 22:10:31 -0000	1.4
***************
*** 3,6 ****
--- 3,7 ----
  #include "network/network_receiver.hpp"
  
+ #include "common/common.hpp"
  #include "network/net_Integer.hpp"
  #include "network/net_Byte.hpp"



-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click