From b829170121d3657369904ec62d8065606777a9ce Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Oct 2021 18:54:04 +0200 Subject: Removed doxygen generated docs They can be rebuild anytime and are considered a build artifact/binary. --- Doc/doxygen/html/_net_host_8h_source.html | 167 ------------------------------ 1 file changed, 167 deletions(-) delete mode 100644 Doc/doxygen/html/_net_host_8h_source.html (limited to 'Doc/doxygen/html/_net_host_8h_source.html') diff --git a/Doc/doxygen/html/_net_host_8h_source.html b/Doc/doxygen/html/_net_host_8h_source.html deleted file mode 100644 index 9b47ab6..0000000 --- a/Doc/doxygen/html/_net_host_8h_source.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - -Starshatter_Open: D:/SRC/StarshatterSVN/NetEx/NetHost.h Source File - - - - - - - - - - - - - -
-
- - - - - - -
-
Starshatter_Open -
-
Open source Starshatter engine
-
-
- - - - - -
-
- -
-
-
- -
- - - - -
- -
- -
-
-
NetHost.h
-
-
-Go to the documentation of this file.
1 /* Project nGenEx
-
2  Destroyer Studios LLC
-
3  Copyright © 1997-2004. All Rights Reserved.
-
4 
-
5  SUBSYSTEM: NetEx.lib
-
6  FILE: NetHost.h
-
7  AUTHOR: John DiCamillo
-
8 
-
9 
-
10  OVERVIEW
-
11  ========
-
12  Network Host
-
13 */
-
14 
-
15 #ifndef NET_HOST_H
-
16 #define NET_HOST_H
-
17 
-
18 #include <windows.h>
-
19 #include "NetAddr.h"
-
20 #include "Text.h"
-
21 #include "List.h"
-
22 
-
23 // +-------------------------------------------------------------------+
-
24 
-
25 class NetHost
-
26 {
-
27 public:
-
28  static const char* TYPENAME() { return "NetHost"; }
-
29 
-
30  NetHost();
-
31  NetHost(const char* host_addr);
-
32  NetHost(const NetHost& n);
-
33  ~NetHost();
-
34 
-
35  const char* Name();
-
36  NetAddr Address();
-
37 
-
38  List<Text>& Aliases() { return aliases; }
-
39  List<NetAddr>& AddressList() { return addresses; }
-
40 
-
41 private:
-
42  void Init(const char* host_name);
-
43 
-
44  Text name;
-
45  List<Text> aliases;
-
46  List<NetAddr> addresses;
-
47 };
-
48 
-
49 
-
50 #endif // NET_HOST_H
-
-
- - - - -- cgit v1.1