HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HOM_ChannelGraph.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_ChannelGraph_h__
10 #define __HOM_ChannelGraph_h__
11 
12 #include "HOM_API.h"
13 #include "HOM_BaseKeyframe.h"
15 #include "HOM_ElemPtr.h"
16 #include "HOM_PaneTab.h"
17 #include "HOM_Parm.h"
18 #include "HOM_PtrOrNull.h"
19 
20 #include <map>
21 #include <vector>
22 
23 
24 SWIGOUT(%rename(ChannelGraph) HOM_ChannelGraph;)
25 
27 {
28 public:
30  {
32  }
34  {
35  // The only reason we need to explicitly define the copy constructor is
36  // so we can call HOM_CONSTRUCT_OBJECT. Otherwise, the compiler's
37  // built-in version would be fine.
39  }
41  {
43  }
44 
45  virtual bool operator==(HOM_PtrOrNull<HOM_ChannelGraph> graph) = 0;
46  virtual bool operator!=(HOM_PtrOrNull<HOM_ChannelGraph> graph) = 0;
47 
48  virtual int __hash__() = 0;
49  virtual std::string __repr__() = 0;
50 
51  virtual std::map<
53  std::vector< HOM_ElemPtr<HOM_BaseKeyframe> >
54  > selectedKeyframes() = 0;
55 
56  virtual std::vector< HOM_ElemPtr<HOM_ChannelGraphSelection> > selection() = 0;
57  virtual void setSelection( const std::vector<HOM_ChannelGraphSelection*> & s) = 0;
58 };
59 
60 #endif // __HOM_ChannelGraph_h__
GT_API const UT_StringHolder selection
#define HOM_DESTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1291
virtual void setSelection(const std::vector< HOM_ChannelGraphSelection * > &s)=0
GLsizei const GLchar *const * string
Definition: glcorearb.h:814
#define SWIGOUT(x)
Definition: HOM_Defines.h:24
GLdouble s
Definition: glad.h:3009
string __repr__(VtArray< T > const &self)
Definition: wrapArray.h:352
virtual ~HOM_ChannelGraph()
virtual int __hash__()=0
#define HOM_API
Definition: HOM_API.h:13
#define HOM_CONSTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1290
bool operator!=(const Mat3< T0 > &m0, const Mat3< T1 > &m1)
Inequality operator, does exact floating point comparisons.
Definition: Mat3.h:556
HOM_ChannelGraph(const HOM_ChannelGraph &pane)
OIIO_UTIL_API bool rename(string_view from, string_view to, std::string &err)
virtual std::map< HOM_ElemPtr< HOM_Parm >, std::vector< HOM_ElemPtr< HOM_BaseKeyframe > > > selectedKeyframes()=0
bool operator==(const Mat3< T0 > &m0, const Mat3< T1 > &m1)
Equality operator, does exact floating point comparisons.
Definition: Mat3.h:542