From 38d5f0682106f5f1a457ab6d6aa09c3bbdb4e2c3 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sun, 27 Sep 2009 09:58:13 +0000 Subject: [PATCH] * Move VideoInfo under private: * Add doxygen docs for GetVideoInfo(). Originally committed to SVN as r3595. --- aegisub/reporter/include/platform.h | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/aegisub/reporter/include/platform.h b/aegisub/reporter/include/platform.h index 097791ea4..819a6ee35 100644 --- a/aegisub/reporter/include/platform.h +++ b/aegisub/reporter/include/platform.h @@ -287,20 +287,26 @@ public: #endif //@} - // Available video information. - enum VideoInfo { - VIDEO_RENDERER, ///< Renderer - VIDEO_VENDOR, ///< Vendor - VIDEO_VERSION ///< Version - }; - private: void Init(); - wxString GetVideoInfo(enum Platform::VideoInfo which); /// wxPlatformInfo struct. const wxPlatformInfo plat; /// wxLocale instance. wxLocale *locale; + + + /// Available video information. + enum VideoInfo { + VIDEO_RENDERER, ///< Renderer + VIDEO_VENDOR, ///< Vendor + VIDEO_VERSION ///< Version + }; + + /// Retrieve OpenGL video information. + /// @param which Requested information + /// @return Video info. + wxString GetVideoInfo(enum Platform::VideoInfo which); + };