/[H7]/trunk/H7 Server/TcpServerClass.h
ViewVC logotype

Contents of /trunk/H7 Server/TcpServerClass.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33 - (show annotations) (download)
Wed Jan 31 17:22:59 2007 UTC (17 years, 3 months ago) by hedin
File MIME type: text/plain
File size: 282 byte(s)
Made the selection of baud rate work (well, make everything work - including multiple clients)
1 #pragma once
2 #include "afxsock.h"
3 #include "TcpClientClass.h"
4
5 #include <list>
6
7
8 class TcpServerClass :
9 public CSocket
10 {
11 std::list<TcpClientClass*> mClients;
12 public:
13 TcpServerClass(void);
14 virtual ~TcpServerClass(void);
15 virtual void OnAccept(int nErrorCode);
16 };

  ViewVC Help
Powered by ViewVC 1.1.20