HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_BlockBeginCompile.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: SOP_BlockBeginCompile.h ( SOP Library, C++)
7  *
8  * COMMENTS:
9  */
10 
11 #ifndef __SOP_BlockBeginCompile__
12 #define __SOP_BlockBeginCompile__
13 
14 #include "SOP_API.h"
15 #include "SOP_BlockBegin.h"
16 
18 {
19 public:
20  SOP_BlockBeginCompile(OP_Network *net, const char *name, OP_Operator *entry);
21 
22  static OP_Node *myConstructor(OP_Network *net,
23  const char *name,
24  OP_Operator *entry);
25  static PRM_Template myTemplateList[];
26 
27  void FORPATH(UT_String &str, fpreal t) const override
28  { evalString(str, "blockpath", 0, t); }
29  virtual void NAME(UT_String &str, fpreal t) const
30  { evalString(str, "name", 0, t); }
31 
32  static int buildBeginBlockStatic(void *op, int idx,
33  fpreal t, const PRM_Template *);
34 
35  void getDescriptiveParmName(UT_String &name) const override
36  { name = "name"; }
37 protected:
38  OP_ERROR cookMySop(OP_Context &context) override;
39 
40  const char *inputLabel(unsigned idx) const override;
41 
42 private:
43 };
44 
45 
46 #endif
47 
48 
virtual const char * inputLabel(unsigned idx) const
UT_ErrorSeverity
Definition: UT_Error.h:25
virtual void NAME(UT_String &str, fpreal t) const
void evalString(UT_String &val, int pi, int vi, fpreal t) const
GLuint const GLchar * name
Definition: glcorearb.h:786
void FORPATH(UT_String &str, fpreal t) const override
GLdouble t
Definition: glad.h:2397
fpreal64 fpreal
Definition: SYS_Types.h:277
void getDescriptiveParmName(UT_String &name) const override
#define SOP_API
Definition: SOP_API.h:10
virtual OP_ERROR cookMySop(OP_Context &context)=0