00001 /*************************************************************************** 00002 sdlscreenview.h - description 00003 ------------------- 00004 begin : Sat May 3 2003 00005 copyright : (C) 2003 by Gabor Torok 00006 email : cctorok@yahoo.com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef SDLSCREENVIEW_H 00019 #define SDLSCREENVIEW_H 00020 00021 #include "constants.h" 00022 00027 class SDLScreenView { 00028 public: 00029 SDLScreenView(); 00030 virtual ~SDLScreenView(); 00031 00033 virtual void drawView() = 0; 00034 00036 virtual void drawAfter() = 0; 00037 }; 00038 00039 #endif
1.4.0