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_AsciiClipWriter.h 00015 * 00016 * COMMENTS: 00017 * This class writes to .clip files. 00018 */ 00019 00020 #ifndef __CL_AsciiClipWriter_h__ 00021 #define __CL_AsciiClipWriter_h__ 00022 00023 #include "CL_API.h" 00024 #include "CL_ClipWriter.h" 00025 #include <iostream.h> 00026 00027 class CL_API CL_AsciiClipWriter : public CL_ClipWriter 00028 { 00029 public: 00030 CL_AsciiClipWriter() {} 00031 virtual ~CL_AsciiClipWriter() {} 00032 00033 virtual bool writeClip(const char *file_name, const CL_Clip &clip); 00034 bool writeClip(ostream &os, const CL_Clip &clip); 00035 }; 00036 00037 #endif
1.5.9