HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CHOP_RealtimeFan.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: CHOP Library (C++)
7  *
8  * COMMENTS: All realtime channels which perform an operation on its inputs
9  * and output a different # of channels should derive from this
10  * class.
11  *
12  */
13 
14 #ifndef __CHOP_Realtime_Fan_h__
15 #define __CHOP_Realtime_Fan_h__
16 
17 #include "CHOP_API.h"
18 #include <UT/UT_ValArray.h>
19 #include "CHOP_Realtime.h"
20 
22 {
23 public:
25  const char *name,
26  OP_Operator *entry);
27  ~CHOP_RealtimeFan() override;
28 
29  void cacheChannelData(fpreal t) override;
30 
31  virtual void getChannelOutputNames(UT_ValArray<char*> &str) =0;
32 
33 private:
34 
35 };
36 
37 #endif
#define CHOP_API
Definition: CHOP_API.h:10
GLuint const GLchar * name
Definition: glcorearb.h:786
GLdouble t
Definition: glad.h:2397
fpreal64 fpreal
Definition: SYS_Types.h:277
virtual void cacheChannelData(fpreal t)