Go to the documentation of this file.00001
00011
00012
00013 #if (_MSC_VER > 1000) || defined(SGI_COMPILER)
00014 #pragma once
00015 #endif
00016
00017 #ifndef __XSIUIOBJECT_H__
00018 #define __XSIUIOBJECT_H__
00019
00020 #include <xsi_siobject.h>
00021 #include <xsi_value.h>
00022 #include <xsi_status.h>
00023
00024 namespace XSI {
00025
00026 class View;
00027
00028
00036
00037
00038 class SICPPSDKDECL UIObject : public SIObject
00039 {
00040 public:
00042 UIObject();
00043
00045 ~UIObject();
00046
00050 UIObject(const CRef& in_ref);
00051
00055 UIObject(const UIObject& in_obj);
00056
00061 bool IsA( siClassID in_ClassID) const;
00062
00066 siClassID GetClassID() const;
00067
00073 UIObject& operator=(const UIObject& in_obj);
00074
00080 UIObject& operator=(const CRef& in_ref);
00081
00082 private:
00083 UIObject * operator&() const;
00084 UIObject * operator&();
00085 };
00086
00087 };
00088 #endif // __XSIUIOBJECT_H__