ivaria/movierecorder.h
Go to the documentation of this file.00001 /* 00002 movierecorder.h - Crystal Space plugin interface 00003 for a realtime movie recorder. 00004 00005 Copyright (C) 2003 by Micah Dowty <[email protected]> 00006 00007 NOTE that this plugin is GPL, not LGPL. 00008 00009 This program is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU General Public License 00011 as published by the Free Software Foundation; either version 2 00012 of the License, or (at your option) any later version. 00013 00014 This program is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with this program; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 */ 00023 00024 #ifndef __CS_IVARIA_MOVIERECORDER_H__ 00025 #define __CS_IVARIA_MOVIERECORDER_H__ 00026 00031 #include "csutil/scf.h" 00032 00033 SCF_VERSION (iMovieRecorder, 0, 0, 1); 00034 00041 struct iMovieRecorder : public virtual iBase 00042 { 00044 virtual void Start(void) = 0; 00045 00047 virtual void Stop(void) = 0; 00048 00050 virtual bool IsRecording(void) const = 0; 00051 00053 virtual void Pause(void) = 0; 00054 00056 virtual void UnPause(void) = 0; 00057 00059 virtual bool IsPaused(void) const = 0; 00060 }; 00061 00062 #endif // __CS_IVARIA_MOVIERECORDER_H__ 00063
Generated for Crystal Space by doxygen 1.4.7