diff options
Diffstat (limited to 'src/stable/serverinterface.cpp')
-rw-r--r-- | src/stable/serverinterface.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/stable/serverinterface.cpp b/src/stable/serverinterface.cpp new file mode 100644 index 0000000..0e3122e --- /dev/null +++ b/src/stable/serverinterface.cpp | |||
@@ -0,0 +1,29 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #include "bu/serverinterface.h" | ||
9 | #include "bu/server.h" | ||
10 | |||
11 | Bu::ServerInterface::ServerInterface( Server &rSrv ) : | ||
12 | rSrv( rSrv ) | ||
13 | { | ||
14 | } | ||
15 | |||
16 | Bu::ServerInterface::ServerInterface( const ServerInterface &rSrc ) : | ||
17 | rSrv( rSrc.rSrv ) | ||
18 | { | ||
19 | } | ||
20 | |||
21 | Bu::ServerInterface::~ServerInterface() | ||
22 | { | ||
23 | } | ||
24 | |||
25 | void Bu::ServerInterface::outputReady( int iClientId ) | ||
26 | { | ||
27 | rSrv.clientWriteReady( iClientId ); | ||
28 | } | ||
29 | |||