HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HOM_properties.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_properties_h__
10 #define __HOM_properties_h__
11 
12 #include "HOM_API.h"
13 #include "HOM_Defines.h"
14 #include "HOM_Errors.h"
15 #include <vector>
16 
17 SWIGOUT(%rename(properties) HOM_properties;)
18 
19 class HOM_ParmTemplate;
20 
22 {
23 public:
24  virtual ~HOM_properties()
25  {}
26 
27  virtual std::string __repr__() = 0;
28 
29  virtual std::vector<std::string> classes(const char *tags = "*") = 0;
30  virtual std::string classLabel(const char *class_name) = 0;
31  virtual std::vector<std::string> categories(const char *class_name) = 0;
32  virtual std::vector<std::string> parameters(const char *class_name,
33  const char *category_name) = 0;
34 
35  SWIGOUT(%newobject parmTemplate);
36  virtual HOM_ParmTemplate *parmTemplate(const char *class_name,
37  const char *parm_name) = 0;
38 };
39 
40 #endif
41 
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
#define HOM_API
Definition: HOM_API.h:13
OIIO_UTIL_API bool rename(string_view from, string_view to, std::string &err)
virtual ~HOM_properties()