HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HOM_ApexNode.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  * COMMENTS:
7  */
8 
9 #ifndef __HOM_ApexNode_h__
10 #define __HOM_ApexNode_h__
11 
12 #include "HOM_API.h"
13 #include "HOM_UniNode.h"
14 
16 
17 SWIGOUT(%rename(ApexNode) HOM_ApexNode;)
18 
19 class HOM_API HOM_ApexNode : virtual public HOM_UniNode
20 {
21 public:
23  : HOM_UniNode()
24  { HOM_CONSTRUCT_OBJECT(this) }
26  : HOM_UniNode(node)
28  { HOM_CONSTRUCT_OBJECT(this) }
29  ~HOM_ApexNode() override
30  { HOM_DESTRUCT_OBJECT(this) }
31 
32  std::string __repr__() override = 0;
33  std::string __str__() override = 0;
34 
35  virtual bool isSubgraphAsset() = 0;
36  virtual void convertSubgraphToSubnet() = 0;
37 
38  virtual std::map<std::string, hboost::any> properties() = 0;
39 
40  SWIGOUT(%newobject debugger;)
41  virtual HOM_ApexUniGraphDebugger *debugger() = 0;
42  virtual hboost::any inputDebugData(int input_index) = 0;
43  virtual hboost::any outputDebugData(int output_index) = 0;
44 };
45 
46 #endif // __HOM_ApexNode_h__
#define HOM_DESTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1398
~HOM_ApexNode() override
Definition: HOM_ApexNode.h:29
#define SWIGOUT(x)
Definition: HOM_Defines.h:24
string __repr__(VtArray< T > const &self)
Definition: wrapArray.h:312
bool any(const vbool4 &v)
Definition: simd.h:3600
#define HOM_API
Definition: HOM_API.h:13
HOM_ApexNode(const HOM_ApexNode &node)
Definition: HOM_ApexNode.h:25
#define HOM_CONSTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1397
OIIO_UTIL_API bool rename(string_view from, string_view to, std::string &err)
virtual std::string __str__()=0