xo-umbrella2/xo-alloc2/docs
2025-12-23 21:06:38 -05:00
..
_static + docs in xo-alloc2/ + misc improvements 2025-12-11 22:18:09 -05:00
AAllocator-reference.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
AllocInfo-reference.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
ArenaConfig-reference.rst + docs in xo-alloc2/ + misc improvements 2025-12-11 22:18:09 -05:00
CMakeLists.txt xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
conf.py + docs in xo-alloc2/ + misc improvements 2025-12-11 22:18:09 -05:00
DArena-reference.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
examples.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
glossary.rst + docs in xo-alloc2/ + misc improvements 2025-12-11 22:18:09 -05:00
implementation.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
index.rst xo-alloc2: ++ documentation + threshold size for THP feature 2025-12-23 21:06:38 -05:00
README + docs in xo-alloc2/ + misc improvements 2025-12-11 22:18:09 -05:00

build

        +-----------------------------------------------+
        | cmake                                         |
        |   CMakeLists.txt                              |
        |   $PREFIX/share/cmake/xo_macros/xo_cxx.cmake  |
        +-----------------------------------------------+
           |
           |                                                  +----------------------+
           +------------------------------------------------->| .build/docs/Doxyfile |
           |                                                  +----------------------+
           |                                                     |
           |                                        /------------/
           |                                        |
           |                                        v
           |     +---------------------------------------+    +-----------------+
           +---->| doxygen                               |--->| .build/docs/dox |
           |     |   $PREFIX/share/xo-macros/Doxyfile.in |    |   +- html/      |
           |     +---------------------------------------+    |   +- xml/       |
           |                                                  +-----------------+
           |                                                     |
           |                                        /------------/
           |                                        |
           |                                        v
           |     +---------------------------------------+    +--------------------+
           \---->| sphinx                                |--->| .build/docs/sphinx |
                 |   +- conf.py                          |    |   +- html/         |
                 |   +- _static/                         |    +--------------------+
                 |   +- *.rst                            |
                 +---------------------------------------+

files

   README            this file
   CMakeLists.txt    build entry point
   conf.py           sphinx config
   _static           static files for sphinx

map

   index.rst
   +- install.rst
   +- examples.rst
   +- unit-quantities.rst
   +- classes.rst
   +- glossary.rst
   ...

examples

.. doxygenclass:: ${c++ class name}
   :project:
   :path:
   :members:
   :protected-members:
   :private-members:
   :undoc-members:
   :member-groups:
   :members-only:
   :outline:
   :no-link:
   :allow-dot-graphs:

.. doxygendefine:: ${c preprocessor define}

.. doxygenconcept:: ${c++ concept definition}

.. doxygenenum:: ${c++ enum definition}

.. doxygenfunction:: ${c++ function name}