Description Extraction

In addition to snippets manipulation that is applicable to any language Znai can extract description of methods and convert parameters into API Parameters Head over to CPP Description Extraction to learn more include doxygen doc params utils nested my_func title My Params first_param int description of first param item a item b second_param bool description of second param

Auto Reference

Znai provides plugins to automatically create reference documentation for methods and classes Head over to CPP Auto Reference to learn more include doxygen member multi_println prints a value and a new line v1 const T1 & value to print v2 const T2 & value to print v1 const T1 & value to print v2 const T2 & value to print ** * prints a value and a new line * @param v1 value to print * @param v2 value to print * @tparam T1 type of the value one to print * @tparam T2 type of the value two to print * template<typename T1 typename T2> void multi_println const T1& v1 const T2& v2 std cout << v1 << << v2 << n