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 +}