From d1ccc0a3a2b2ece0b9257f31d3efb7c469df47ab Mon Sep 17 00:00:00 2001 From: Gary Bradski Date: Wed, 24 May 2017 16:48:32 -0700 Subject: [PATCH] Update example_09-08.cpp added comments at top --- example_09-08.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/example_09-08.cpp b/example_09-08.cpp index e9fe827..d84a1b4 100644 --- a/example_09-08.cpp +++ b/example_09-08.cpp @@ -1,3 +1,7 @@ +//Example 9-8. An example program which takes a single argument +//indicating a video file; that video file will be replayed inside of a wxWidgets object that +//we will define, called WxMoviePlayer +// #include "wx/wx.h" #include "WxMoviePlayer.hpp" // Application class, the top level object in wxWidgets @@ -23,4 +27,4 @@ bool MyApp::OnInit() { mp->open( wxString(argv[1]) ); mp->Show( true ); return true; -} \ No newline at end of file +}