2012-11-15 88 views
1

Im記錄了從聲明文件外部的模型生成的ManagedObject類。由於這個類是自動生成的,我不想修改源代碼,那麼我有.m文件之外的文檔。在.doc文件中記錄doxygen中的類。 @property不起作用

我有這樣ATM:

/*! 
    \file AA.h 
    \class AA 
    \extends ManagedObject 
    Data model object generated from the model. 

    \public 
    \property NSString * hardwareId 
    \brief Unique identifier of the device 
*/ 

林獲得具有AA級的輸出文件,它顯示了繼承,但正在顯示一無所知的財產或公共標籤。

不知道我做錯了什麼。

任何想法?非常感謝

回答

1

我找到了答案。問題是我需要在每個屬性名稱的開頭添加一個「名稱空間」和類的名稱。

所以,我的最終文件它像:

AA.doc

/*! 
    \class AA 
    This file contains the documentation of the data model object generated from the model. 
*/ 

/*! 
    \var NSString * AA::hardwareId 
    \brief Unique identifier of the device 
*/ 

我沒有必要指定文件,並繼承自doxygen的自動把它從.h文件,無所添加

相關問題