00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Luke Moore 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: CL_ClipWriter.h 00015 * 00016 * COMMENTS: 00017 * This abstract class defines the interface for an object that knows 00018 * how to write a clip to a file. Clip writers are registered with 00019 * the CL_ClipIO singleton object. 00020 */ 00021 00022 #ifndef __CL_ClipWriter_h__ 00023 #define __CL_ClipWriter_h__ 00024 00025 #include "CL_API.h" 00026 class CL_Clip; 00027 00028 class CL_API CL_ClipWriter 00029 { 00030 public: 00031 CL_ClipWriter() {} 00032 virtual ~CL_ClipWriter() {} 00033 00034 virtual bool writeClip(const char *file_name, const CL_Clip &clip) = 0; 00035 }; 00036 00037 #endif
1.5.9