faubackup2/src/copier distributor.cpp,1.7,1.8 filereceiver.cpp,1.3,1.4 filereceiver.hpp,1.1.1.1,1.2 filesender.cpp,1.3,1.4 filesender.hpp,1.2,1.3 informationSender.cpp,1.4,1.5 informationSender.hpp,1.2,1.3 local_sender.hpp,1.2,1.3 sender.hpp,1.2,1.3

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

Modified Files:
	distributor.cpp filereceiver.cpp filereceiver.hpp 
	filesender.cpp filesender.hpp informationSender.cpp 
	informationSender.hpp local_sender.hpp sender.hpp 
Log Message:
more include file cleanups...

Index: local_sender.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/local_sender.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** local_sender.hpp	8 Jun 2005 19:29:04 -0000	1.2
--- local_sender.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 1,9 ****
  #ifndef __localsender_include__
  #define __localsender_include__
! #include <common/common.hpp>
! #include <copier/sender.hpp>
! #include <filesystem/r_inodes.hpp>
  #include <map>
  
  using namespace std;
  namespace faubackup
--- 1,10 ----
  #ifndef __localsender_include__
  #define __localsender_include__
! 
  #include <map>
  
+ #include "copier/sender.hpp"
+ #include "filesystem/r_inodes.hpp"
+ 
  using namespace std;
  namespace faubackup

Index: informationSender.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/informationSender.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** informationSender.hpp	8 Jun 2005 19:29:04 -0000	1.2
--- informationSender.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 2,11 ****
  #define __InfoSender_include__
  
- #include "common/common.hpp"
- #include "network/network_com.hpp"
- #include "copier/sender.hpp"
- #include <filesystem/r_inodes.hpp>
  #include <map>
  
  
  
--- 2,9 ----
  #define __InfoSender_include__
  
  #include <map>
+ #include <string>
  
+ #include "copier/sender.hpp"
  
  
***************
*** 15,18 ****
--- 13,18 ----
  {
  
+ class NetCommunication;
+ 
  
  class InformationSender: public Sender

Index: filereceiver.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/filereceiver.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** filereceiver.cpp	14 Jun 2005 20:23:33 -0000	1.3
--- filereceiver.cpp	14 Jun 2005 22:10:31 -0000	1.4
***************
*** 3,9 ****
--- 3,11 ----
  #include "copier/filereceiver.hpp"
  
+ #include "common/common.hpp"
  #include "common/system_calls.hpp"
  #include "copier/distributor.hpp"
  #include "filesystem/r_inodes.hpp"
+ #include "network/network_com.hpp"
  #include "rsync/rsync.hpp"
  

Index: filesender.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/filesender.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** filesender.hpp	8 Jun 2005 19:29:04 -0000	1.2
--- filesender.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 1,16 ****
  #ifndef __filesender_include__
  #define __filesender_include__
! #include <common/common.hpp>
! #include <network/network_com.hpp>
  #include <string>
- #include <rsync/rsync.hpp>
- #include <filesystem/r_inodes.hpp>
  
- using namespace std;
  
  namespace faubackup
  {
  
! 
  
  
--- 1,13 ----
  #ifndef __filesender_include__
  #define __filesender_include__
! 
  #include <string>
  
  
  namespace faubackup
  {
  
! using std::string;
! class NetCommunication;
  
  

Index: informationSender.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/informationSender.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** informationSender.cpp	14 Jun 2005 20:23:33 -0000	1.4
--- informationSender.cpp	14 Jun 2005 22:10:31 -0000	1.5
***************
*** 4,7 ****
--- 4,9 ----
  
  #include "common/fileinfo.hpp"
+ #include "filesystem/r_inodes.hpp"
+ #include "network/network_com.hpp"
  
  

Index: distributor.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/distributor.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** distributor.cpp	14 Jun 2005 20:44:22 -0000	1.7
--- distributor.cpp	14 Jun 2005 22:10:19 -0000	1.8
***************
*** 3,8 ****
--- 3,10 ----
  #include "copier/distributor.hpp"
  
+ #include "common/common.hpp"
  #include "common/system_calls.hpp"
  #include "filesystem/r_inodes.hpp"
+ #include "network/network_com.hpp"
  #include "rsync/rsync.hpp"
  

Index: filereceiver.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/filereceiver.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** filereceiver.hpp	2 Jun 2005 09:31:13 -0000	1.1.1.1
--- filereceiver.hpp	14 Jun 2005 22:10:31 -0000	1.2
***************
*** 2,20 ****
  #define __filereceiver_include__
  
! #include <iostream>
! #include <network/network_com.hpp>
! #include <filesystem/r_inodes.hpp>
! #include <common/common.hpp>
! #include <fstream>
! #include <rsync/rsync.hpp>
  using std::string;
! //using std::cerr;
! //using std::cout;
! //using std::endl;
! using std::ofstream;
! using std::ios;
  namespace faubackup
  {
  
  class FileReceiver
  {
--- 2,16 ----
  #define __filereceiver_include__
  
! #include <sys/stat.h>
! #include <string>
! 
! 
  using std::string;
! 
  namespace faubackup
  {
  
+ class NetCommunication;
+ 
  class FileReceiver
  {

Index: filesender.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/filesender.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** filesender.cpp	14 Jun 2005 20:23:33 -0000	1.3
--- filesender.cpp	14 Jun 2005 22:10:31 -0000	1.4
***************
*** 3,11 ****
  #include "copier/filesender.hpp"
  
! #include <fstream>
! 
  #include "common/system_calls.hpp"
  #include "copier/distributor.hpp"
  #include "regexp/regexp.hpp"
  
  namespace faubackup
--- 3,13 ----
  #include "copier/filesender.hpp"
  
! #include "common/common.hpp"
  #include "common/system_calls.hpp"
  #include "copier/distributor.hpp"
+ #include "filesystem/r_inodes.hpp"
+ #include "network/network_com.hpp"
  #include "regexp/regexp.hpp"
+ #include "rsync/rsync.hpp"
  
  namespace faubackup

Index: sender.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/copier/sender.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** sender.hpp	8 Jun 2005 19:29:04 -0000	1.2
--- sender.hpp	14 Jun 2005 22:10:31 -0000	1.3
***************
*** 2,16 ****
  #define __Sender_include__
  
! #include <string>
! #include <iostream>
  #include "common/common.hpp"
  #include "common/fileinfo.hpp"
! #include <sys/types.h>
! #include <sys/stat.h>
! #include <unistd.h>
! using std::string;
! using std::cerr;
! using std::cout;
! using std::endl;
  
  namespace faubackup
--- 2,10 ----
  #define __Sender_include__
  
! #include <sys/stat.h>
! 
  #include "common/common.hpp"
  #include "common/fileinfo.hpp"
! 
  
  namespace faubackup



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