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