From 541a224df84c72cc39675ba75b9f5a454e29eb0d Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Fri, 29 Apr 2005 20:41:21 +0000 Subject: [PATCH] No need to include that stuff, a forward declaration will do git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12513 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/app/PortLink.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/private/app/PortLink.h b/headers/private/app/PortLink.h index edfc95465e..9d60bc0138 100644 --- a/headers/private/app/PortLink.h +++ b/headers/private/app/PortLink.h @@ -29,8 +29,6 @@ #define _PORTLINK_H #include -#include -#include /* Error checking rules: (for if you don't want to check every return code) @@ -47,6 +45,8 @@ */ +class LinkMsgReader; +class LinkMsgSender; class BPortLink { public: @@ -81,7 +81,7 @@ public: status_t ReadShape(BShape *shape); template status_t Read(T *data) { - return fReader->Read(data,sizeof(T)); + return Read(data,sizeof(T)); } protected: