Hopefully fixed gcc4 build (untested).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33568 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer 2009-10-13 05:36:56 +00:00
parent 42d7d768ca
commit 2044d20e91
4 changed files with 12 additions and 0 deletions

View File

@ -21,6 +21,9 @@
#include "DbgMsg.h"
using namespace std;
LprTransport::LprTransport(BMessage *msg)
:
BDataIO()

View File

@ -10,6 +10,9 @@
#include <string>
using namespace std;
class LprTransport : public BDataIO {
public:
LprTransport(BMessage *msg);

View File

@ -13,6 +13,9 @@
#include "Socket.h"
using namespace std;
#define LPS_SERVER_PORT 515
#define LPS_CLIENT_PORT_S 721
#define LPS_CLIENT_PORT_E 731

View File

@ -8,6 +8,9 @@
#include <string>
using namespace std;
class Socket;