Doxygen没有收到评论

时间:2015-03-30 21:16:44

标签: c# doxygen

我一直试图将评论放入我的档案中,因此请提供更详细的功能信息等,但是doxygen还没有注册我的任何评论。我就是这个原因。这是我在我的代码中添加的内容



/*!* comment1 */
	public Texture whiteAsteroid;
	public Texture redAsteroid;
	public Texture yellowAsteroid;
	public Texture blueAsteroid;

	public GameObject particleDeathEffect;

	private bool whiteCollison;
	private bool redCollison;
	/*!* comment2 */
	private bool yellowCollison;
	private bool blueCollison;

	/*!* comment3 */
	void Start ()
	{
		// sets the rotate speed to random value
		rotateSpeed = Random.Range (2f, 5f);
		/*!* comment4 */
		size = Random.Range (3f, 10f);
		transform.localScale = new Vector3 (size, 1, size);




comment1看起来很好,但其他人都没有。难道我做错了什么?任何帮助表示赞赏:)

1 个答案:

答案 0 :(得分:0)

默认情况下,私有元素注释不会出现在doxygen中。

设置EXTRACT_PRIVATEhttp://www.doxygen.nl/manual/config.html#cfg_extract_private