CrystalSpace

Public API Reference

Main Page   Modules   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

movierecorder.h

00001 /*
00002     movierecorder.h - Crystal Space plugin interface
00003                       for a realtime movie recorder.
00004 
00005     Copyright (C) 2003 by Micah Dowty <micah@navi.picogui.org>
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 
00027 #include "csutil/scf.h"
00028 
00029 SCF_VERSION (iMovieRecorder, 0, 0, 1);
00030 
00036 struct iMovieRecorder : public iBase
00037 {
00038   //=========================================================================
00039 
00041   virtual void Start(void) = 0;
00042 
00044   virtual void Stop(void) = 0;
00045 
00047   virtual bool IsRecording(void) const = 0;
00048 
00050   virtual void Pause(void) = 0;
00051 
00053   virtual void UnPause(void) = 0;
00054 
00056   virtual bool IsPaused(void) const = 0;
00057 
00058   //=========================================================================
00059 };
00060 
00061 #endif // __CS_IVARIA_MOVIERECORDER_H__
00062 

Generated for Crystal Space by doxygen 1.2.14