From f7e08142ac695b2a839707f9bac66304a583b0cd Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 25 Aug 2014 01:45:28 +0100 Subject: [PATCH] Comments. --- src/lib/audio_content.h | 3 +++ src/wx/config_dialog.cc | 3 +++ src/wx/timeline.cc | 9 +++++++++ 3 files changed, 15 insertions(+) diff --git a/src/lib/audio_content.h b/src/lib/audio_content.h index 540839d69..57085a765 100644 --- a/src/lib/audio_content.h +++ b/src/lib/audio_content.h @@ -33,6 +33,9 @@ namespace cxml { class AudioProcessor; +/** @class AudioContentProperty + * @brief Names for properties of AudioContent. + */ class AudioContentProperty { public: diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index 175ed94ad..c1eee3c7b 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -1097,6 +1097,9 @@ private: wxButton* _reset_kdm_email; }; +/** @class AdvancedPage + * @brief Advanced page of the preferences dialog. + */ class AdvancedPage : public wxStockPreferencesPage, public Page { public: diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 1096a435a..13baef6b7 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -213,6 +213,9 @@ private: boost::signals2::scoped_connection _content_connection; }; +/** @class AudioContentView + * @brief Timeline view for AudioContent. + */ class AudioContentView : public ContentView { public: @@ -237,6 +240,9 @@ private: } }; +/** @class AudioContentView + * @brief Timeline view for VideoContent. + */ class VideoContentView : public ContentView { public: @@ -266,6 +272,9 @@ private: } }; +/** @class AudioContentView + * @brief Timeline view for SubtitleContent. + */ class SubtitleContentView : public ContentView { public: -- 2.30.2