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 * Mark Alexander 00008 * Side Effects Software Inc. 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: CHOP Library (C++) 00015 * 00016 * COMMENTS: All realtime Channel Generators should derive from this class. 00017 * 00018 */ 00019 00020 #ifndef __CHOP_Realtime_Generator_h__ 00021 #define __CHOP_Realtime_Generator_h__ 00022 00023 #include "CHOP_API.h" 00024 #include <UT/UT_PtrArray.h> 00025 #include "CHOP_Realtime.h" 00026 00027 class CHOP_API CHOP_RealtimeGenerator : public CHOP_Realtime 00028 { 00029 public: 00030 CHOP_RealtimeGenerator(OP_Network *parent, 00031 const char *name, 00032 OP_Operator *entry); 00033 virtual ~CHOP_RealtimeGenerator(); 00034 00035 virtual void cacheChannelData(float t); 00036 virtual void getChannelOutputNames(UT_PtrArray<char*> &str) =0; 00037 }; 00038 00039 #endif
1.5.9