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_ClipReader.h 00015 * 00016 * COMMENTS: 00017 * This abstract class defines the interface for an object that knows 00018 * how to read a clip from a file. Clip readers are registered with 00019 * the CL_ClipIO singleton object. 00020 */ 00021 00022 #ifndef __CL_ClipReader_h__ 00023 #define __CL_ClipReader_h__ 00024 00025 #include "CL_API.h" 00026 class CL_Clip; 00027 00028 class CL_API CL_ClipReader 00029 { 00030 public: 00031 CL_ClipReader() {} 00032 virtual ~CL_ClipReader() {} 00033 00034 virtual bool readClip(const char *file_name, CL_Clip &clip) = 0; 00035 }; 00036 00037 #endif
1.5.9