Skip to content

Commit e75cf9e

Browse files
improve documentation
1 parent 815c55a commit e75cf9e

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

Doxyfile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@ HIDE_UNDOC_RELATIONS = YES
16051605
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
16061606
# have no effect if this option is set to NO (the default)
16071607

1608-
HAVE_DOT = NO
1608+
HAVE_DOT = YES
16091609

16101610
# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
16111611
# allowed to run in parallel. When set to 0 (the default) doxygen will

src/framework/System/Net/WebClient.h

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ namespace System
3636
}
3737
};
3838

39+
/// global initialization of winsock
3940
InitNet g_initNet;
4041

4142
/// a web client class for downloading web pages via HTTP

src/framework/System/String.h

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ typedef char Char;
1414

1515
namespace System
1616
{
17+
/// string comparison enumeration
1718
enum StringComparison { OrdinalIgnoreCase };
1819

1920
/// A generalized string class

src/framework/System/Xml.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
#include "System/String.h"
44
#include "System/IO.h"
55

6-
/// xml document class
76
namespace System
87
{
98
namespace Xml
109
{
10+
/// xml document class
1111
class XmlDocument
1212
{
1313
public:

0 commit comments

Comments
 (0)