Skip to content

Commit

Permalink
Minor fix to doxygen generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Jul 21, 2019
1 parent 9a906b1 commit a9393b8
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions app/commsdsl2comms/src/Doxygen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -477,26 +477,25 @@ bool Doxygen::writeNamespaces() const
static const std::string Templ =
"/// @namespace #^#NS#$#\n"
"/// @brief Additional protocol specific namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::message\n"
"/// @namespace #^#NS#$#::message\n"
"/// @brief Namespace for all the messages in @ref #^#NS#$# namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::field\n"
"/// @namespace #^#NS#$#::field\n"
"/// @brief Namespace for all the stand alone fields defined in @ref #^#NS#$# namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::frame\n"
"/// @namespace #^#NS#$#::frame\n"
"/// @brief Namespace for all the frames defined in @ref #^#NS#$# namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::frame::layer\n"
"/// @namespace #^#NS#$#::frame::layer\n"
"/// @brief Namespace for the custom frame layers defined in @ref #^#NS#$# namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::frame::checksum\n"
"/// @namespace #^#NS#$#::frame::checksum\n"
"/// @brief Namespace for the custom frame layers defined in @ref #^#NS#$# namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::options\n"
"/// @namespace #^#NS#$#::options\n"
"/// @brief Namespace for the various protocol options defined in @ref #^#NS#$# namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::input\n"
"/// @namespace #^#NS#$#::input\n"
"/// @brief Namespace for hold input messages bundles defined in @ref #^#NS#$# namespace.\n\n"
"/// @namespace #^#MAIN#$#::#^#NS#$#::dispatch\n"
"/// @namespace #^#NS#$#::dispatch\n"
"/// @brief Namespace for the various message dispatch functionss defined in @ref #^#NS#$# namespace.\n\n"
;

common::ReplacementMap repl;
repl.insert(std::make_pair("MAIN", m_generator.mainNamespace()));
repl.insert(std::make_pair("NS", s));
otherNs.push_back(common::processTemplate(Templ, repl));
}
Expand Down

0 comments on commit a9393b8

Please sign in to comment.