summaryrefslogtreecommitdiffstats
path: root/src/lib/netlist/documentation/structure.dox.h
diff options
context:
space:
mode:
author couriersud <couriersud@arcor.de>2016-07-21 11:05:55 +0200
committer couriersud <couriersud@arcor.de>2016-07-21 11:05:55 +0200
commit1e40d95e8b47d834d1ede706921dc19850aaaff2 (patch)
treef2e74d4451a527313fdc52f49b10955153f1dbd5 /src/lib/netlist/documentation/structure.dox.h
parent7a69d48edd6e1f59c92271eb7fa217eaf0a714c7 (diff)
Netlist updates:
- Removed trampolines (OUTLOGIC, INPLOGIC and friends). - Started using doxygen comment and documentation style. Added doxygen files to documentation folder. - Refactored code triggered by doxygen output. - Moved internal and support classes into namespace detail. - Use an anordered map in parser. - -Wconversion fixes - All done now. - Fixed -Wold-style-cast warnings in netlist code. - Added iterators to pstring. - Moved two macros, added more RAII and improved exceptions. Fixed some bugs in parser code. - Fixed a number of bugs in parser code and exception handling. [Couriersud]
Diffstat (limited to 'src/lib/netlist/documentation/structure.dox.h')
-rw-r--r--src/lib/netlist/documentation/structure.dox.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/netlist/documentation/structure.dox.h b/src/lib/netlist/documentation/structure.dox.h
new file mode 100644
index 00000000000..41dd9507717
--- /dev/null
+++ b/src/lib/netlist/documentation/structure.dox.h
@@ -0,0 +1,21 @@
+
+/*! The netlist namespace.
+ * All netlist related code is contained in the netlist namespace
+ */
+namespace netlist
+{
+ /*! The netlist::devices namespace.
+ * All netlist devices are contained in the netlist::devices namespace.
+ */
+ namespace devices
+ {
+ }
+
+ /*! Internal support classes you should not use in code using netlist api.
+ * This namespace contains all internal support classes not intended
+ * to be used outside of the core.
+ */
+ namespace detail
+ {
+ }
+}