From 75e46195f6c42ab9b007ba0eac68fb2f0de51d30 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Thu, 5 Jun 2008 15:38:49 +0200 Subject: [PATCH] Protocols: Fix includes to use the explicit path of the header files --- protocols/BaseMsg.h | 3 ++- protocols/MMSException.cc | 2 +- protocols/Message.cc | 2 +- protocols/Message.h | 9 +++++---- protocols/MsgPayload.cc | 2 +- protocols/MsgPayload.h | 4 ++-- protocols/client_server/ClientMsg.cc | 2 +- protocols/client_server/ClientMsg.h | 10 +++++----- protocols/client_server/MsgClientConfirm.cc | 2 +- protocols/client_server/MsgClientConfirm.h | 9 +++++---- protocols/client_server/MsgClientRequest.cc | 2 +- protocols/client_server/MsgClientRequest.h | 7 ++++--- protocols/client_server/MsgMoteIdList.cc | 2 +- protocols/client_server/MsgMoteIdList.h | 7 ++----- protocols/client_server/MsgSession.cc | 2 +- protocols/client_server/MsgSession.h | 4 ++-- protocols/host_server/HostMsg.cc | 2 +- protocols/host_server/HostMsg.h | 12 ++++++------ protocols/host_server/MsgHostConfirm.cc | 2 +- protocols/host_server/MsgHostConfirm.h | 7 +++---- protocols/host_server/MsgHostRequest.cc | 2 +- protocols/host_server/MsgHostRequest.h | 7 +++---- protocols/host_server/MsgMoteAddresses.cc | 2 +- protocols/host_server/MsgMoteAddresses.h | 4 ++-- protocols/host_server/MsgMoteConnectionInfo.cc | 2 +- protocols/host_server/MsgMoteConnectionInfo.h | 4 ++-- protocols/host_server/MsgMoteConnectionInfoList.cc | 2 +- protocols/host_server/MsgMoteConnectionInfoList.h | 8 ++++---- protocols/host_server/MsgPlugEvent.cc | 2 +- protocols/host_server/MsgPlugEvent.h | 6 +++--- protocols/motecontrol/MoteMsg.cc | 2 +- protocols/motecontrol/MoteMsg.h | 9 +++++---- protocols/motecontrol/MsgConfirm.cc | 3 ++- protocols/motecontrol/MsgConfirm.h | 7 +++---- protocols/motecontrol/MsgRequest.cc | 2 +- protocols/motecontrol/MsgRequest.h | 6 +++--- protocols/tcputil.cc | 2 +- protocols/tcputil.h | 17 ++++------------- remote.h | 4 ++++ 39 files changed, 89 insertions(+), 94 deletions(-) diff --git a/protocols/BaseMsg.h b/protocols/BaseMsg.h index 5447ee5..630a446 100644 --- a/protocols/BaseMsg.h +++ b/protocols/BaseMsg.h @@ -1,6 +1,7 @@ #ifndef REMOTE_PROTOCOLS_BASEMSG_H #define REMOTE_PROTOCOLS_BASEMSG_H -#include "tcputil.h" + +#include "protocols/tcputil.h" namespace remote { namespace protocols { diff --git a/protocols/MMSException.cc b/protocols/MMSException.cc index 69ec972..db58faa 100644 --- a/protocols/MMSException.cc +++ b/protocols/MMSException.cc @@ -1,4 +1,4 @@ -#include "MMSException.h" +#include "protocols/MMSException.h" namespace remote { namespace protocols { diff --git a/protocols/Message.cc b/protocols/Message.cc index 5febc2b..7e79ba2 100644 --- a/protocols/Message.cc +++ b/protocols/Message.cc @@ -1,4 +1,4 @@ -#include "Message.h" +#include "protocols/Message.h" namespace remote { namespace protocols { diff --git a/protocols/Message.h b/protocols/Message.h index c5583ee..1c7ae03 100644 --- a/protocols/Message.h +++ b/protocols/Message.h @@ -1,9 +1,10 @@ #ifndef REMOTE_PROTOCOLS_MESSAGE_H #define REMOTE_PROTOCOLS_MESSAGE_H -#include "tcputil.h" -#include "BaseMsg.h" -#include -#include + +#include "remote.h" + +#include "protocols/tcputil.h" +#include "protocols/BaseMsg.h" namespace remote { namespace protocols { diff --git a/protocols/MsgPayload.cc b/protocols/MsgPayload.cc index e3f98c5..9b77139 100644 --- a/protocols/MsgPayload.cc +++ b/protocols/MsgPayload.cc @@ -1,4 +1,4 @@ -#include "MsgPayload.h" +#include "protocols/MsgPayload.h" namespace remote { namespace protocols { diff --git a/protocols/MsgPayload.h b/protocols/MsgPayload.h index 3880a5c..1d0a2f7 100644 --- a/protocols/MsgPayload.h +++ b/protocols/MsgPayload.h @@ -1,7 +1,7 @@ #ifndef REMOTE_PROTOCOLS_MSGPAYLOAD_H #define REMOTE_PROTOCOLS_MSGPAYLOAD_H -#include "tcputil.h" -#include "BaseMsg.h" + +#include "protocols/BaseMsg.h" namespace remote { namespace protocols { diff --git a/protocols/client_server/ClientMsg.cc b/protocols/client_server/ClientMsg.cc index e6e4361..166bae1 100644 --- a/protocols/client_server/ClientMsg.cc +++ b/protocols/client_server/ClientMsg.cc @@ -1,4 +1,4 @@ -#include "ClientMsg.h" +#include "protocols/client_server/ClientMsg.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/ClientMsg.h b/protocols/client_server/ClientMsg.h index 102ca7e..20f0194 100644 --- a/protocols/client_server/ClientMsg.h +++ b/protocols/client_server/ClientMsg.h @@ -1,10 +1,10 @@ #ifndef REMOTE_PROTOCOLS_CLIENT_SERVER_CLIENTMSG_H #define REMOTE_PROTOCOLS_CLIENT_SERVER_CLIENTMSG_H -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgClientRequest.h" -#include "MsgClientConfirm.h" -#include "MsgSession.h" + +#include "protocols/BaseMsg.h" +#include "protocols/client_server/MsgClientConfirm.h" +#include "protocols/client_server/MsgClientRequest.h" +#include "protocols/client_server/MsgSession.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/MsgClientConfirm.cc b/protocols/client_server/MsgClientConfirm.cc index 672af89..00a13f1 100644 --- a/protocols/client_server/MsgClientConfirm.cc +++ b/protocols/client_server/MsgClientConfirm.cc @@ -1,4 +1,4 @@ -#include "MsgClientConfirm.h" +#include "protocols/client_server/MsgClientConfirm.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/MsgClientConfirm.h b/protocols/client_server/MsgClientConfirm.h index 9715610..a2f29cd 100644 --- a/protocols/client_server/MsgClientConfirm.h +++ b/protocols/client_server/MsgClientConfirm.h @@ -1,9 +1,10 @@ #ifndef REMOTE_PROTOCOLS_CLIENT_SERVER_MSGCLIENTCONFIRM_H #define REMOTE_PROTOCOLS_CLIENT_SERVER_MSGCLIENTCONFIRM_H -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgClientRequest.h" -#include "localconstants.h" + +#include "protocols/tcputil.h" +#include "protocols/BaseMsg.h" +#include "protocols/client_server/MsgClientRequest.h" +#include "protocols/client_server/localconstants.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/MsgClientRequest.cc b/protocols/client_server/MsgClientRequest.cc index e11b2a5..77e0136 100644 --- a/protocols/client_server/MsgClientRequest.cc +++ b/protocols/client_server/MsgClientRequest.cc @@ -1,4 +1,4 @@ -#include "MsgClientRequest.h" +#include "protocols/client_server/MsgClientRequest.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/MsgClientRequest.h b/protocols/client_server/MsgClientRequest.h index f9bc4a4..24c8d03 100644 --- a/protocols/client_server/MsgClientRequest.h +++ b/protocols/client_server/MsgClientRequest.h @@ -1,8 +1,9 @@ #ifndef REMOTE_PROTOCOLS_CLIENT_SERVER_MSGCLIENTREQUEST_H #define REMOTE_PROTOCOLS_CLIENT_SERVER_MSGCLIENTREQUEST_H -#include "BaseMsg.h" -#include "MsgMoteIdList.h" -#include "MsgPayload.h" + +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" +#include "protocols/client_server/MsgMoteIdList.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/MsgMoteIdList.cc b/protocols/client_server/MsgMoteIdList.cc index da0fcac..d053e80 100644 --- a/protocols/client_server/MsgMoteIdList.cc +++ b/protocols/client_server/MsgMoteIdList.cc @@ -1,4 +1,4 @@ -#include "MsgMoteIdList.h" +#include "protocols/client_server/MsgMoteIdList.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/MsgMoteIdList.h b/protocols/client_server/MsgMoteIdList.h index c38665a..ff12341 100644 --- a/protocols/client_server/MsgMoteIdList.h +++ b/protocols/client_server/MsgMoteIdList.h @@ -1,16 +1,13 @@ #ifndef REMOTE_PROTOCOLS_CLIENT_SERVER_MSGMOTEIDLIST_H #define REMOTE_PROTOCOLS_CLIENT_SERVER_MSGMOTEIDLIST_H -#include -#include -#include "types.h" -#include "tcputil.h" +#include "protocols/BaseMsg.h" namespace remote { namespace protocols { namespace client_server { typedef std::list idlist_t; -class MsgMoteIdList +class MsgMoteIdList : public BaseMsg { public: MsgMoteIdList(); diff --git a/protocols/client_server/MsgSession.cc b/protocols/client_server/MsgSession.cc index 3b8981c..be5aa25 100644 --- a/protocols/client_server/MsgSession.cc +++ b/protocols/client_server/MsgSession.cc @@ -1,4 +1,4 @@ -#include "MsgSession.h" +#include "protocols/client_server/MsgSession.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/client_server/MsgSession.h b/protocols/client_server/MsgSession.h index d611258..5d89814 100644 --- a/protocols/client_server/MsgSession.h +++ b/protocols/client_server/MsgSession.h @@ -1,7 +1,7 @@ #ifndef REMOTE_PROTOCOLS_CLIENT_SERVER_MSGSESSION_H #define REMOTE_PROTOCOLS_CLIENT_SERVER_MSGSESSION_H -#include "BaseMsg.h" -#include "types.h" + +#include "protocols/BaseMsg.h" namespace remote { namespace protocols { namespace client_server { diff --git a/protocols/host_server/HostMsg.cc b/protocols/host_server/HostMsg.cc index 27d23d5..2cd0b59 100644 --- a/protocols/host_server/HostMsg.cc +++ b/protocols/host_server/HostMsg.cc @@ -1,4 +1,4 @@ -#include "HostMsg.h" +#include "protocols/host_server/HostMsg.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/HostMsg.h b/protocols/host_server/HostMsg.h index aed39c5..7fca122 100644 --- a/protocols/host_server/HostMsg.h +++ b/protocols/host_server/HostMsg.h @@ -1,11 +1,11 @@ #ifndef REMOTE_PROTOCOLS_HOST_SERVER_HOSTMSG_H #define REMOTE_PROTOCOLS_HOST_SERVER_HOSTMSG_H -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgPayload.h" -#include "MsgPlugEvent.h" -#include "MsgHostRequest.h" -#include "MsgHostConfirm.h" + +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" +#include "protocols/host_server/MsgHostConfirm.h" +#include "protocols/host_server/MsgHostRequest.h" +#include "protocols/host_server/MsgPlugEvent.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgHostConfirm.cc b/protocols/host_server/MsgHostConfirm.cc index 020ff84..4a7d134 100644 --- a/protocols/host_server/MsgHostConfirm.cc +++ b/protocols/host_server/MsgHostConfirm.cc @@ -1,4 +1,4 @@ -#include "MsgHostConfirm.h" +#include "protocols/host_server/MsgHostConfirm.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgHostConfirm.h b/protocols/host_server/MsgHostConfirm.h index e832a51..578a517 100644 --- a/protocols/host_server/MsgHostConfirm.h +++ b/protocols/host_server/MsgHostConfirm.h @@ -1,10 +1,9 @@ #ifndef REMOTE_PROTOCOLS_HOST_SERVER_MSGHOSTCONFIRM_H #define REMOTE_PROTOCOLS_HOST_SERVER_MSGHOSTCONFIRM_H -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgPayload.h" -#include "MsgMoteAddresses.h" +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" +#include "protocols/host_server/MsgMoteAddresses.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgHostRequest.cc b/protocols/host_server/MsgHostRequest.cc index bdcb901..1421780 100644 --- a/protocols/host_server/MsgHostRequest.cc +++ b/protocols/host_server/MsgHostRequest.cc @@ -1,4 +1,4 @@ -#include "MsgHostRequest.h" +#include "protocols/host_server/MsgHostRequest.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgHostRequest.h b/protocols/host_server/MsgHostRequest.h index 2956ba7..65394cc 100644 --- a/protocols/host_server/MsgHostRequest.h +++ b/protocols/host_server/MsgHostRequest.h @@ -1,10 +1,9 @@ #ifndef REMOTE_PROTOCOLS_HOST_SERVER_MSGHOSTREQUEST_H #define REMOTE_PROTOCOLS_HOST_SERVER_MSGHOSTREQUEST_H -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgPayload.h" -#include "MsgMoteAddresses.h" +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" +#include "protocols/host_server/MsgMoteAddresses.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgMoteAddresses.cc b/protocols/host_server/MsgMoteAddresses.cc index 3a3eefc..5def3b4 100644 --- a/protocols/host_server/MsgMoteAddresses.cc +++ b/protocols/host_server/MsgMoteAddresses.cc @@ -1,4 +1,4 @@ -#include "MsgMoteAddresses.h" +#include "protocols/host_server/MsgMoteAddresses.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgMoteAddresses.h b/protocols/host_server/MsgMoteAddresses.h index 50e4882..c8c299a 100644 --- a/protocols/host_server/MsgMoteAddresses.h +++ b/protocols/host_server/MsgMoteAddresses.h @@ -1,8 +1,8 @@ #ifndef REMOTE_PROTOCOLS_HOST_SERVER_MSGMOTEADDRESSES_H #define REMOTE_PROTOCOLS_HOST_SERVER_MSGMOTEADDRESSES_H -#include "BaseMsg.h" -#include "MsgPayload.h" +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgMoteConnectionInfo.cc b/protocols/host_server/MsgMoteConnectionInfo.cc index 78393a4..1397aec 100644 --- a/protocols/host_server/MsgMoteConnectionInfo.cc +++ b/protocols/host_server/MsgMoteConnectionInfo.cc @@ -1,4 +1,4 @@ -#include "MsgMoteConnectionInfo.h" +#include "protocols/host_server/MsgMoteConnectionInfo.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgMoteConnectionInfo.h b/protocols/host_server/MsgMoteConnectionInfo.h index 4d036ae..88f4041 100644 --- a/protocols/host_server/MsgMoteConnectionInfo.h +++ b/protocols/host_server/MsgMoteConnectionInfo.h @@ -1,8 +1,8 @@ #ifndef REMOTE_PROTOCOLS_HOST_SERVER_MSGMOTECONNECTIONINFO_H #define REMOTE_PROTOCOLS_HOST_SERVER_MSGMOTECONNECTIONINFO_H -#include "BaseMsg.h" -#include "MsgPayload.h" +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgMoteConnectionInfoList.cc b/protocols/host_server/MsgMoteConnectionInfoList.cc index bd6e5dd..00d33aa 100644 --- a/protocols/host_server/MsgMoteConnectionInfoList.cc +++ b/protocols/host_server/MsgMoteConnectionInfoList.cc @@ -1,4 +1,4 @@ -#include "MsgMoteConnectionInfoList.h" +#include "protocols/host_server/MsgMoteConnectionInfoList.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgMoteConnectionInfoList.h b/protocols/host_server/MsgMoteConnectionInfoList.h index 6b949b6..7515b7f 100644 --- a/protocols/host_server/MsgMoteConnectionInfoList.h +++ b/protocols/host_server/MsgMoteConnectionInfoList.h @@ -1,10 +1,10 @@ #ifndef REMOTE_PROTOCOLS_HOST_SERVER_MSGMOTECONNECTIONINFOLIST_H #define REMOTE_PROTOCOLS_HOST_SERVER_MSGMOTECONNECTIONINFOLIST_H -#include -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgMoteConnectionInfo.h" +#include "remote.h" + +#include "protocols/BaseMsg.h" +#include "protocols/host_server/MsgMoteConnectionInfo.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgPlugEvent.cc b/protocols/host_server/MsgPlugEvent.cc index f02e842..9988dda 100644 --- a/protocols/host_server/MsgPlugEvent.cc +++ b/protocols/host_server/MsgPlugEvent.cc @@ -1,4 +1,4 @@ -#include "MsgPlugEvent.h" +#include "protocols/host_server/MsgPlugEvent.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/host_server/MsgPlugEvent.h b/protocols/host_server/MsgPlugEvent.h index b763ad7..8b83def 100644 --- a/protocols/host_server/MsgPlugEvent.h +++ b/protocols/host_server/MsgPlugEvent.h @@ -1,8 +1,8 @@ #ifndef REMOTE_PROTOCOLS_HOST_SERVER_MSGPLUGEVENT_H #define REMOTE_PROTOCOLS_HOST_SERVER_MSGPLUGEVENT_H -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgMoteConnectionInfoList.h" + +#include "protocols/BaseMsg.h" +#include "protocols/host_server/MsgMoteConnectionInfoList.h" namespace remote { namespace protocols { namespace host_server { diff --git a/protocols/motecontrol/MoteMsg.cc b/protocols/motecontrol/MoteMsg.cc index be2260c..d41bc55 100644 --- a/protocols/motecontrol/MoteMsg.cc +++ b/protocols/motecontrol/MoteMsg.cc @@ -1,4 +1,4 @@ -#include "MoteMsg.h" +#include "protocols/motecontrol/MoteMsg.h" namespace remote { namespace protocols { namespace motecontrol { diff --git a/protocols/motecontrol/MoteMsg.h b/protocols/motecontrol/MoteMsg.h index 20fc7d2..9b870ed 100644 --- a/protocols/motecontrol/MoteMsg.h +++ b/protocols/motecontrol/MoteMsg.h @@ -1,9 +1,10 @@ #ifndef REMOTE_PROTOCOLS_MOTECONTROL_MOTEMSG_H #define REMOTE_PROTOCOLS_MOTECONTROL_MOTEMSG_H -#include "BaseMsg.h" -#include "MsgRequest.h" -#include "MsgConfirm.h" -#include "MsgPayload.h" + +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" +#include "protocols/motecontrol/MsgConfirm.h" +#include "protocols/motecontrol/MsgRequest.h" namespace remote { namespace protocols { namespace motecontrol { diff --git a/protocols/motecontrol/MsgConfirm.cc b/protocols/motecontrol/MsgConfirm.cc index 184c462..9bce114 100644 --- a/protocols/motecontrol/MsgConfirm.cc +++ b/protocols/motecontrol/MsgConfirm.cc @@ -1,4 +1,5 @@ -#include "MsgConfirm.h" +#include "protocols/motecontrol/MsgConfirm.h" + namespace remote { namespace protocols { namespace motecontrol { MsgConfirm::MsgConfirm(uint8_t command, result_t result, status_t status ) diff --git a/protocols/motecontrol/MsgConfirm.h b/protocols/motecontrol/MsgConfirm.h index 290b6b6..f47645a 100644 --- a/protocols/motecontrol/MsgConfirm.h +++ b/protocols/motecontrol/MsgConfirm.h @@ -1,10 +1,9 @@ #ifndef REMOTE_PROTOCOLS_MOTECONTROL_MSGCONFIRM_H #define REMOTE_PROTOCOLS_MOTECONTROL_MSGCONFIRM_H -#include "BaseMsg.h" -#include "MsgRequest.h" -#include "types.h" -#include "localconstants.h" +#include "protocols/BaseMsg.h" +#include "protocols/motecontrol/localconstants.h" +#include "protocols/motecontrol/MsgRequest.h" namespace remote { namespace protocols { namespace motecontrol { diff --git a/protocols/motecontrol/MsgRequest.cc b/protocols/motecontrol/MsgRequest.cc index 2721c7a..b7d5a5b 100644 --- a/protocols/motecontrol/MsgRequest.cc +++ b/protocols/motecontrol/MsgRequest.cc @@ -1,4 +1,4 @@ -#include "MsgRequest.h" +#include "protocols/motecontrol/MsgRequest.h" namespace remote { namespace protocols { namespace motecontrol { diff --git a/protocols/motecontrol/MsgRequest.h b/protocols/motecontrol/MsgRequest.h index 2fe2f88..c3426eb 100644 --- a/protocols/motecontrol/MsgRequest.h +++ b/protocols/motecontrol/MsgRequest.h @@ -1,8 +1,8 @@ #ifndef REMOTE_PROTOCOLS_MOTECONTROL_MSGREQUEST_H #define REMOTE_PROTOCOLS_MOTECONTROL_MSGREQUEST_H -#include "tcputil.h" -#include "BaseMsg.h" -#include "MsgPayload.h" + +#include "protocols/BaseMsg.h" +#include "protocols/MsgPayload.h" namespace remote { namespace protocols { namespace motecontrol { diff --git a/protocols/tcputil.cc b/protocols/tcputil.cc index 8dd9ead..66d9573 100644 --- a/protocols/tcputil.cc +++ b/protocols/tcputil.cc @@ -1,4 +1,4 @@ -#include "tcputil.h" +#include "protocols/tcputil.h" namespace remote { namespace protocols { diff --git a/protocols/tcputil.h b/protocols/tcputil.h index 0a74ea7..eb67a45 100644 --- a/protocols/tcputil.h +++ b/protocols/tcputil.h @@ -1,19 +1,10 @@ -#ifndef REMOTE_PROTOCOLS__TCPUTIL_H +#ifndef REMOTE_PROTOCOLS_TCPUTIL_H #define REMOTE_PROTOCOLS_TCPUTIL_H -#include -#include -#include -#include -#include -#include -#include +#include "remote.h" -#include - -#include "types.h" -#include "libutil/Log.h" -#include "MMSException.h" +#include "protocols/types.h" +#include "protocols/MMSException.h" namespace remote { namespace protocols { diff --git a/remote.h b/remote.h index 9f562ca..bfb3f84 100644 --- a/remote.h +++ b/remote.h @@ -22,11 +22,15 @@ #include #include #include +#include +#include +#include #include #include #include #include +#include #include #include "libutil/File.h" -- 2.11.4.GIT