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_AsciiClipReader.h 00015 * 00016 * COMMENTS: 00017 * This class reads from .clip files. 00018 */ 00019 00020 #ifndef __CL_AsciiClipReader_h__ 00021 #define __CL_AsciiClipReader_h__ 00022 00023 #include "CL_API.h" 00024 #include "CL_ClipReader.h" 00025 #include <iostream.h> 00026 00027 class UT_IStream; 00028 00029 class CL_API CL_AsciiClipReader : public CL_ClipReader 00030 { 00031 public: 00032 CL_AsciiClipReader() {} 00033 virtual ~CL_AsciiClipReader() {} 00034 00035 virtual bool readClip(const char *file_name, CL_Clip &clip); 00036 00037 // The file name is passed in so it can use it in error mesages. 00038 bool readClip(UT_IStream &is, CL_Clip &clip, const char *filename); 00039 }; 00040 00041 #endif
1.5.9