HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_PointCaptureCore.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_PointCaptureCore.h (SOP Library, C++)
7 *
8 * COMMENTS: PointCaptureCore SOP
9 */
10 
11 #ifndef __SOP_PointCaptureCore__
12 #define __SOP_PointCaptureCore__
13 
14 #include "SOP_API.h"
15 #include "SOP_Node.h"
16 
18 {
19 public:
20  SOP_PointCaptureCore(OP_Network *net, const char *,OP_Operator *entry);
21  ~SOP_PointCaptureCore() override;
22 
23  static OP_Node *myConstructor(OP_Network *net, const char *name,
24  OP_Operator *entry);
25  static PRM_Template *buildTemplates();
26 
27  static constexpr const char* theInputLabels[] = {
28  "Rest Geometry", "Capture Geometry",
29  nullptr // terminator
30  };
31 
32 protected:
33  OP_ERROR cookMySop(OP_Context &context) override;
34  const SOP_NodeVerb *cookVerb() const override;
35 };
36 
37 #endif
virtual const SOP_NodeVerb * cookVerb() const
Definition: SOP_Node.h:906
UT_ErrorSeverity
Definition: UT_Error.h:25
GLuint const GLchar * name
Definition: glcorearb.h:786
#define SOP_API
Definition: SOP_API.h:10
virtual OP_ERROR cookMySop(OP_Context &context)=0