Commit 2e45c1a1 authored by Dick Hollenbeck's avatar Dick Hollenbeck
Browse files

begin working on Distributed Library for EESCHEMA

parent 5694818d
Loading
Loading
Loading
Loading
+5 −5
Original line number Original line Diff line number Diff line
@@ -297,7 +297,7 @@ SYMBOL_CACHE_SIZE = 0
# Private class members and static file members will be hidden unless
# Private class members and static file members will be hidden unless
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES


EXTRACT_ALL            = YES
EXTRACT_ALL            = NO


# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
# will be included in the documentation.
# will be included in the documentation.
@@ -336,7 +336,7 @@ EXTRACT_ANON_NSPACES = NO
# various overviews, but no documentation section is generated.
# various overviews, but no documentation section is generated.
# This option has no effect if EXTRACT_ALL is enabled.
# This option has no effect if EXTRACT_ALL is enabled.


HIDE_UNDOC_MEMBERS     = NO
HIDE_UNDOC_MEMBERS     = YES


# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
# undocumented classes that are normally visible in the class hierarchy.
# undocumented classes that are normally visible in the class hierarchy.
@@ -357,7 +357,7 @@ HIDE_FRIEND_COMPOUNDS = NO
# If set to NO (the default) these blocks will be appended to the
# If set to NO (the default) these blocks will be appended to the
# function's detailed documentation block.
# function's detailed documentation block.


HIDE_IN_BODY_DOCS      = NO
HIDE_IN_BODY_DOCS      = YES


# The INTERNAL_DOCS tag determines if documentation
# The INTERNAL_DOCS tag determines if documentation
# that is typed after a \internal command is included. If the tag is set
# that is typed after a \internal command is included. If the tag is set
@@ -402,7 +402,7 @@ INLINE_INFO = YES
# alphabetically by member name. If set to NO the members will appear in
# alphabetically by member name. If set to NO the members will appear in
# declaration order.
# declaration order.


SORT_MEMBER_DOCS       = YES
SORT_MEMBER_DOCS       = NO


# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
# brief documentation of file, namespace and class members alphabetically
# brief documentation of file, namespace and class members alphabetically
@@ -1390,7 +1390,7 @@ HIDE_UNDOC_RELATIONS = YES
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
# toolkit from AT&T and Lucent Bell Labs. The other options in this section
# have no effect if this option is set to NO (the default)
# have no effect if this option is set to NO (the default)


HAVE_DOT               = NO
HAVE_DOT               = YES


# By default doxygen will write a font called FreeSans.ttf to the output
# By default doxygen will write a font called FreeSans.ttf to the output
# directory and reference it in all dot files that doxygen generates. This
# directory and reference it in all dot files that doxygen generates. This
+280 −86

File changed.

Preview size limit exceeded, changes collapsed.

new/drawing.png

0 → 100644
+61.8 KiB
Loading image diff...

new/drawing.svg

0 → 100644
+964 −0

File added.

Preview size limit exceeded, changes collapsed.

new/make-html.sh

0 → 100755
+3 −0
Original line number Original line Diff line number Diff line

# run this from the <kicad>/new directory
doxygen
Loading