Skip to content

Commit

Permalink
Update example_09-08.cpp
Browse files Browse the repository at this point in the history
added comments at top
  • Loading branch information
garybradski authored May 24, 2017
1 parent 4d870d7 commit d1ccc0a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion example_09-08.cpp
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -23,4 +27,4 @@ bool MyApp::OnInit() {
mp->open( wxString(argv[1]) );
mp->Show( true );
return true;
}
}

0 comments on commit d1ccc0a

Please sign in to comment.