Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXSocket.h
1 /********************************************************************************
2 * *
3 * S o c k e t C l a s s *
4 * *
5 *********************************************************************************
6 * Copyright (C) 2005,2022 by Jeroen van der Zijp. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXSOCKET_H
22 #define FXSOCKET_H
23 
24 #ifndef FXIODEVICE_H
25 #include "FXIODevice.h"
26 #endif
27 
28 
30 
31 
32 namespace FX {
33 
34 
38 class FXAPI FXSocket : public FXIODevice {
39 private:
40  FXSocket(const FXSocket&);
41  FXSocket &operator=(const FXSocket&);
42 public:
43 
45  FXSocket(){ }
46 
48  FXSocket(FXInputHandle h);
49  };
50 
51 }
52 
53 #endif
FXSocket()
Construct socket.
Definition: FXSocket.h:45
Socket i/o device.
Definition: FXSocket.h:38
Definition: FX4Splitter.h:28
FXIODevice manipulates a handle to operating system i/o device, such as pipes, sockets, or files.
Definition: FXIODevice.h:35

Copyright © 1997-2022 Jeroen van der Zijp