HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HOM_ShelfDock.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_ShelfDock_h__
10 #define __HOM_ShelfDock_h__
11 
12 #include "HOM_API.h"
13 #include "HOM_Defines.h"
14 #include "HOM_Module.h"
15 #include "HOM_Errors.h"
16 #include <string>
17 #include <vector>
18 
19 SWIGOUT(%rename(ShelfDock) HOM_ShelfDock;)
20 
21 class HOM_ShelfSet;
22 
24 {
25 public:
27  { HOM_CONSTRUCT_OBJECT(this) }
28  HOM_ShelfDock(const HOM_ShelfDock &element)
29  { HOM_CONSTRUCT_OBJECT(this) }
30  virtual ~HOM_ShelfDock()
31  { HOM_DESTRUCT_OBJECT(this) }
32 
33  virtual std::string __repr__() = 0;
34 
35  virtual std::vector<HOM_ElemPtr<HOM_ShelfSet> > shelfSets() = 0;
36 
37  virtual std::vector<int> iconsize() = 0;
38 
39  virtual void show(bool on) = 0;
40 };
41 
42 #endif
43 
#define HOM_DESTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1291
GLsizei const GLchar *const * string
Definition: glcorearb.h:814
#define SWIGOUT(x)
Definition: HOM_Defines.h:24
string __repr__(VtArray< T > const &self)
Definition: wrapArray.h:352
virtual ~HOM_ShelfDock()
Definition: HOM_ShelfDock.h:30
#define HOM_API
Definition: HOM_API.h:13
#define HOM_CONSTRUCT_OBJECT(pointer)
Definition: HOM_Module.h:1290
OIIO_UTIL_API bool rename(string_view from, string_view to, std::string &err)
HOM_ShelfDock(const HOM_ShelfDock &element)
Definition: HOM_ShelfDock.h:28