我如何在doxygen的C ++成员组中进行copydoc?

时间:2014-09-16 14:44:54

标签: c++ doxygen

我有这段代码

    /**
     * @brief Class corresponding to the %PatientData schema type.
     *
     * @nosubgrouping
     */
    class __declspec(dllexport) PatientData: public ::abc::def::phsyiology::datamodel::ObjectData
    {
      public:
      /**
       * @name Name
       *
       * @brief Accessor and modifier functions for the %Name
       * required element.
       *
       * Identity of the patient
       */
      //@{

      /**
       * @brief Element type.
       */
      typedef ::xml_schema::string Name_type;

      //@}

我想将@ copydoc / @ copybrief / @ copydetail用于组中的文档到另一个类的文档中,特别是我想要患者的身份'另一个类文档中使用的字符串。

我可以抓住PatientData doc @copydoc abc :: def :: physiology :: datamodel :: PatientData

由于这是一个成员组,我想 @copydoc abc :: def :: physiology :: datamodel :: PatientData :: Name 会工作,但它没有..

0 个答案:

没有答案