私のプロジェクトには、INotifyPropertyChanged を実装するクラスがいくつかあります。それぞれのすべての PropertyChanged イベントがインターフェイスからドキュメントを継承できるようにしたいのですが、インターフェイスは私のプロジェクトの一部ではないため、Doxygen ページがありません。
このドキュメントを使用して、インターフェイスの部分的なドキュメントを取得できます。クラス ページが表示され、それを実装するすべてのクラスが継承図に表示されます。しかし、私はイベントを宣言することができません。イベントを追加するために不足しているキーワードはありますか?
namespace MyNamespace
{
/**
* @class INotifyPropertyChanged
* @brief Interface to allow subscribers to know when the object has been updated. See <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged.aspx">MSDN Doc</a>
* @fn void INotifyPropertyChanged::PropertyChanged(sender, e)
* @memberof INotifyPropertyChanged
* @brief Notification that a property of the object has changed.
* @details the name of the property is in the event arguments
* Still having trouble documenting the parameters correctly, but this doesn't inherit anyway because it's a function, not an event
*/
}
それとも、ボートを完全に見逃しており、Intellisense ドキュメントをインポートする方法はありますか?