changeset 2:cd9942c3faaa

include path modified
author Zoltan K
date Fri, 19 Mar 2010 18:45:39 +0100
parents f405b9538d01
children e80935852b9a
files src/include/IModule.hpp src/include/handler/IHandler.hpp src/include/handler/IHttpHandler.hpp src/include/handler/INetworkHandler.hpp src/include/http/IRequest.hpp src/include/http/IResponse.hpp src/include/http/ITransaction.hpp
diffstat 7 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/src/include/IModule.hpp	Fri Mar 19 18:32:41 2010 +0100
+++ b/src/include/IModule.hpp	Fri Mar 19 18:45:39 2010 +0100
@@ -4,8 +4,8 @@
 # include <string>
 # include <vector>
 
-# include "ITransaction.hpp"
-# include "IEndPoint.hpp"
+# include "http/ITransaction.hpp"
+# include "network/IEndPoint.hpp"
 # include "IConfig.hpp"
 
 namespace zia
--- a/src/include/handler/IHandler.hpp	Fri Mar 19 18:32:41 2010 +0100
+++ b/src/include/handler/IHandler.hpp	Fri Mar 19 18:45:39 2010 +0100
@@ -1,7 +1,7 @@
 #ifndef __ZIA_API_IHANDLER_HPP_
 # define __ZIA_API_IHANDLER_HPP_
 
-# include "ITransaction.hpp"
+# include "http/ITransaction.hpp"
 
 namespace       zia
 {
--- a/src/include/handler/IHttpHandler.hpp	Fri Mar 19 18:32:41 2010 +0100
+++ b/src/include/handler/IHttpHandler.hpp	Fri Mar 19 18:45:39 2010 +0100
@@ -3,8 +3,8 @@
 
 # include <iostream>
 
-# include "ITransaction.hpp"
-# include "IHandler.hpp"
+# include "http/ITransaction.hpp"
+# include "handler/IHandler.hpp"
 
 namespace       zia
 {
--- a/src/include/handler/INetworkHandler.hpp	Fri Mar 19 18:32:41 2010 +0100
+++ b/src/include/handler/INetworkHandler.hpp	Fri Mar 19 18:45:39 2010 +0100
@@ -3,8 +3,8 @@
 
 # include <ios>
 
-# include "IEndPoint.hpp"
-# include "ITransaction.hpp"
+# include "network/IEndPoint.hpp"
+# include "http/ITransaction.hpp"
 
 namespace       zia
 {
--- a/src/include/http/IRequest.hpp	Fri Mar 19 18:32:41 2010 +0100
+++ b/src/include/http/IRequest.hpp	Fri Mar 19 18:45:39 2010 +0100
@@ -3,7 +3,7 @@
 
 #include <string>
 
-#include "IHeader.hpp"
+#include "http/IHeader.hpp"
 
 namespace zia
 {
--- a/src/include/http/IResponse.hpp	Fri Mar 19 18:32:41 2010 +0100
+++ b/src/include/http/IResponse.hpp	Fri Mar 19 18:45:39 2010 +0100
@@ -1,7 +1,7 @@
 #ifndef __ZIA_API_IRESPONSE_HPP__
 # define __ZIA_API_IRESPONSE_HPP__
 
-# include "IHeader.hpp"
+# include "http/IHeader.hpp"
 
 namespace zia
 {
--- a/src/include/http/ITransaction.hpp	Fri Mar 19 18:32:41 2010 +0100
+++ b/src/include/http/ITransaction.hpp	Fri Mar 19 18:45:39 2010 +0100
@@ -1,9 +1,9 @@
 #ifndef __ZIA_API_TRANSACTION_HPP__
 # define __ZIA_API_TRANSACTION_HPP__
 
-# include "IRequest.hpp"
-# include "IResponse.hpp"
-# include "IEndPoint.hpp"
+# include "http/IRequest.hpp"
+# include "http/IResponse.hpp"
+# include "network/IEndPoint.hpp"
 
 namespace zia
 {