00001 #ifndef VPLAYBACK_H 00002 #define VPLAYBACK_H 00003 00004 #include "playbackengine.h" 00005 #include "vwindow.inc" 00006 00007 class VPlayback : public PlaybackEngine 00008 { 00009 public: 00010 VPlayback(MWindow *mwindow, VWindow *vwindow, Canvas *output); 00011 00012 int create_render_engine(); 00013 void init_cursor(); 00014 void stop_cursor(); 00015 void goto_start(); 00016 void goto_end(); 00017 VWindow *vwindow; 00018 }; 00019 00020 #endif
1.4.4