00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __HOM_VexContext_h__
00017 #define __HOM_VexContext_h__
00018
00019 #include "HOM_API.h"
00020 #include "HOM_Defines.h"
00021 #include "HOM_Errors.h"
00022 #include "HOM_Module.h"
00023 #include <string>
00024 #include <map>
00025
00026 SWIGOUT(%rename(VexContext) HOM_VexContext;)
00027
00028 class HOM_API HOM_VexContext
00029 {
00030 public:
00031 HOM_VexContext()
00032 { HOM_CONSTRUCT_OBJECT(this) }
00033 HOM_VexContext(const HOM_VexContext &)
00034 { HOM_CONSTRUCT_OBJECT(this) }
00035 virtual ~HOM_VexContext()
00036 { HOM_DESTRUCT_OBJECT(this) }
00037
00038 virtual std::string __repr__() throw(HOM_Error) = 0;
00039
00040 virtual std::string name() throw(HOM_Error) = 0;
00041
00042 virtual HOM_NodeTypeCategory *nodeTypeCategory() throw(HOM_Error) = 0;
00043
00044 SWIGPYTHONOUT(%feature("autodoc",
00045 "shaderType(self) -> hou.shaderType enum value or None") shaderType;)
00046 virtual HOM_EnumValue *shaderType() throw(HOM_Error) = 0;
00047
00048 SWIGPYTHONOUT(%feature("autodoc",
00049 "pathsToLoadedVexFunctions(self) -> dict of names to paths")
00050 pathsToLoadedVexFunctions;)
00051 virtual std::map<std::string, std::string> pathsToLoadedVexFunctions()
00052 throw(HOM_Error) = 0;
00053 };
00054
00055 #endif