HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HOM_Bookmark.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: HOM Interface for a CH_Bookmark
7  */
8 
9 #ifndef __HOM_Bookmark_h__
10 #define __HOM_Bookmark_h__
11 
12 #include "HOM_API.h"
13 #include "HOM_Module.h"
14 #include <string>
15 #include <vector>
16 
17 class CH_Bookmark;
18 class HOM_Color;
19 
20 SWIGOUT(%rename(Bookmark) HOM_Bookmark;)
21 
23 {
24 public:
26  { HOM_CONSTRUCT_OBJECT(this) }
28  { HOM_CONSTRUCT_OBJECT(this) }
29  virtual ~HOM_Bookmark()
30  { HOM_DESTRUCT_OBJECT(this) }
31 
32  virtual std::string __repr__() = 0;
33 
34  virtual std::string name() = 0;
35  virtual void setName(const char *name) = 0;
36 
37  virtual int startFrame() = 0;
38  virtual void setStartFrame(int start) = 0;
39 
40  virtual int endFrame() = 0;
41  virtual void setEndFrame(int end) = 0;
42 
43  virtual std::string comment() = 0;
44  virtual void setComment(const char *comment) = 0;
45 
46  virtual HOM_Color color() = 0;
47  virtual void setColor(HOM_Color &color) = 0;
48 
49  virtual bool visible() = 0;
50  virtual void setVisible(bool visible) = 0;
51 
52  virtual int64 sessionId() = 0;
53 
54  SWIGOUT(%ignore getBookmark;)
55  virtual CH_Bookmark &getBookmark() = 0;
56 };
57 
58 #endif
#define HOM_DESTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1291
GLuint start
Definition: glcorearb.h:475
GLsizei const GLchar *const * string
Definition: glcorearb.h:814
HOM_Bookmark(const HOM_Bookmark &)
Definition: HOM_Bookmark.h:27
#define SWIGOUT(x)
Definition: HOM_Defines.h:24
string __repr__(VtArray< T > const &self)
Definition: wrapArray.h:352
#define HOM_API
Definition: HOM_API.h:13
void ignore(T const &) VULKAN_HPP_NOEXCEPT
Definition: vulkan.hpp:6508
GLuint GLuint end
Definition: glcorearb.h:475
#define HOM_CONSTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1290
long long int64
Definition: SYS_Types.h:116
GLuint const GLchar * name
Definition: glcorearb.h:786
GLuint color
Definition: glcorearb.h:1261
OIIO_UTIL_API bool rename(string_view from, string_view to, std::string &err)
virtual ~HOM_Bookmark()
Definition: HOM_Bookmark.h:29