HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_UVLayout-3.0.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 library (C++)
7  *
8  * COMMENTS: UVLayout SOP
9  */
10 
11 
12 #ifndef __SOP_UVLayout3_h__
13 #define __SOP_UVLayout3_h__
14 
15 #include "SOP_API.h"
16 #include "SOP_Node.h"
17 
18 class SOP_API SOP_UVLayout3 final : public SOP_Node
19 {
20 public:
21  SOP_UVLayout3(OP_Network *net, const char *name,
22  OP_Operator *op);
23 
24  int isRefInput(unsigned int i) const override;
25 
26  static PRM_Template *buildTemplates();
27  const SOP_NodeVerb *cookVerb() const override;
28 
29  static OP_Node *myConstructor(OP_Network*, const char *,
30  OP_Operator *);
31 
32  void getDescriptiveParmName(UT_String &name) const override
33  { name = "uvattr"; }
34 
35 protected:
36  const char *inputLabel(unsigned idx) const override;
37  void getDescriptiveName(UT_String &name) const override;
38  OP_ERROR cookMySop(OP_Context &context) override;
39 };
40 
41 #endif
virtual const SOP_NodeVerb * cookVerb() const
Definition: SOP_Node.h:906
virtual const char * inputLabel(unsigned idx) const
UT_ErrorSeverity
Definition: UT_Error.h:25
virtual void getDescriptiveName(UT_String &str) const
GLuint const GLchar * name
Definition: glcorearb.h:786
void getDescriptiveParmName(UT_String &name) const override
#define SOP_API
Definition: SOP_API.h:10
virtual OP_ERROR cookMySop(OP_Context &context)=0
virtual int isRefInput(unsigned idx) const