faubackup2/src/common backup_control.cpp,1.7,1.8 backup_control.hpp,1.2,1.3 common.cpp,1.3,1.4 common.hpp,1.1.1.1,1.2 fileinfo.cpp,1.1.1.1,1.2 int_handler.cpp,1.1.1.1,1.2 output_handling.cpp,1.1.1.1,1.2 output_handling.hpp,1.1.1.1,1.2 registration.cpp,1.3,1.4 system_calls.cpp,1.2,1.3 system_calls.hpp,1.1.1.1,1.2 types.hpp,1.1.1.1,1.2
Martin Waitz <[email protected]> Wed, 08 Jun 2005 19:29:06 +0000
| Newsgroups | gmane.comp.sysutils.backup.faubackup.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/faubackup/faubackup2/src/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17985/src/common
Modified Files:
backup_control.cpp backup_control.hpp common.cpp common.hpp
fileinfo.cpp int_handler.cpp output_handling.cpp
output_handling.hpp registration.cpp system_calls.cpp
system_calls.hpp types.hpp
Log Message:
use support.h
It is to be included as _first_ header by _every_ .c/.cpp file.
Please don't include it via other header files.
Index: backup_control.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/backup_control.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** backup_control.hpp 7 Jun 2005 21:05:25 -0000 1.2
--- backup_control.hpp 8 Jun 2005 19:29:04 -0000 1.3
***************
*** 14,18 ****
#include <string>
- #include "config.h"
#include "network/network_com.hpp"
--- 14,17 ----
Index: backup_control.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/backup_control.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** backup_control.cpp 7 Jun 2005 21:05:25 -0000 1.7
--- backup_control.cpp 8 Jun 2005 19:29:04 -0000 1.8
***************
*** 11,14 ****
--- 11,16 ----
******************************************************************************/
+ #include "support.h"
+
#include "common/backup_control.hpp"
#include "common/common.hpp"
Index: system_calls.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/system_calls.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** system_calls.hpp 2 Jun 2005 09:31:13 -0000 1.1.1.1
--- system_calls.hpp 8 Jun 2005 19:29:04 -0000 1.2
***************
*** 2,6 ****
#define __sys_call_include__
- #include "config.h"
#include <sys/stat.h>
#include <string>
--- 2,5 ----
Index: output_handling.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/output_handling.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** output_handling.hpp 2 Jun 2005 09:31:13 -0000 1.1.1.1
--- output_handling.hpp 8 Jun 2005 19:29:04 -0000 1.2
***************
*** 1,5 ****
#ifndef __output_handling_include__
#define __output_handling_include__
- #include "config.h"
#include <iostream>
#include <string>
--- 1,4 ----
Index: fileinfo.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/fileinfo.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** fileinfo.cpp 2 Jun 2005 09:31:13 -0000 1.1.1.1
--- fileinfo.cpp 8 Jun 2005 19:29:04 -0000 1.2
***************
*** 1,3 ****
! #include "config.h"
#include <string>
#include <sys/types.h>
--- 1,3 ----
! #include "support.h"
#include <string>
#include <sys/types.h>
Index: int_handler.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/int_handler.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** int_handler.cpp 2 Jun 2005 09:31:13 -0000 1.1.1.1
--- int_handler.cpp 8 Jun 2005 19:29:04 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ #include "support.h"
+
#include "common/common.hpp"
#include "common/int_handler.hpp"
Index: types.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/types.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** types.hpp 2 Jun 2005 09:31:13 -0000 1.1.1.1
--- types.hpp 8 Jun 2005 19:29:04 -0000 1.2
***************
*** 8,12 ****
#include <string>
#include <boost/regex.hpp>
- #include "config.h"
namespace faubackup
{
--- 8,11 ----
Index: system_calls.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/system_calls.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** system_calls.cpp 4 Jun 2005 15:03:23 -0000 1.2
--- system_calls.cpp 8 Jun 2005 19:29:04 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ #include "support.h"
+
#include <common/system_calls.hpp>
#include "regexp/regexp.hpp"
Index: output_handling.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/output_handling.cpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** output_handling.cpp 2 Jun 2005 09:31:13 -0000 1.1.1.1
--- output_handling.cpp 8 Jun 2005 19:29:04 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ #include "support.h"
+
#include <common/output_handling.hpp>
#include "common/system_calls.hpp"
Index: common.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/common.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** common.cpp 7 Jun 2005 21:05:25 -0000 1.3
--- common.cpp 8 Jun 2005 19:29:04 -0000 1.4
***************
*** 9,13 ****
******************************************************************************/
! #include "config.h"
#include <netinet/in.h>
#include "common/common.hpp"
--- 9,13 ----
******************************************************************************/
! #include "support.h"
#include <netinet/in.h>
#include "common/common.hpp"
Index: registration.cpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/registration.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** registration.cpp 7 Jun 2005 11:11:17 -0000 1.3
--- registration.cpp 8 Jun 2005 19:29:04 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ #include "support.h"
+
#include "common/registration.hpp"
#include <signal.h>
Index: common.hpp
===================================================================
RCS file: /cvsroot/faubackup/faubackup2/src/common/common.hpp,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** common.hpp 2 Jun 2005 09:31:13 -0000 1.1.1.1
--- common.hpp 8 Jun 2005 19:29:04 -0000 1.2
***************
*** 1,5 ****
#ifndef __Common_include__
#define __Common_include__
- #include "config.h"
#include <stdint.h>
#include "common/output_handling.hpp"
--- 1,4 ----
-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput
a projector? How fast can you ride your desk chair down the office luge track?
If you want to score the big prize, get to know the little guy.
Play to win an NEC 61" plasma display: http://www.necitguy.com/?r=20