// -------------------------------------------------------------------------- // Name: test_med.cpp // Purpose: // Date: 08/11/1999 // Author: Guilhem Lavaux (C) 1999 // CVSID: $Id$ // -------------------------------------------------------------------------- #include #include #include #include "../lib/vidxanm.h" class MyApp: public wxApp { bool OnInit() { wxFileInputStream *file = new wxFileInputStream(argv[1]); wxVideoXANIM *vidxanm = new wxVideoXANIM(*file); vidxanm->Play(); return TRUE; } }; IMPLEMENT_APP(MyApp)