xsi_annotation.h
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 __XSIANNOTATION_H__
00018 #define __XSIANNOTATION_H__
00019 
00020 #include <xsi_x3dobject.h>
00021 
00022 namespace XSI {
00023 
00024 //*****************************************************************************
00039 //*****************************************************************************
00040 
00041 class SICPPSDKDECL Annotation : public X3DObject
00042 {
00043     public:
00044     
00046     Annotation();
00047     
00049     ~Annotation();
00050     
00054     Annotation(const CRef& in_ref);
00055     
00059     Annotation(const Annotation& in_obj);
00060     
00065     bool IsA( siClassID in_ClassID) const;
00066     
00070     siClassID GetClassID() const;
00071     
00077     Annotation& operator=(const Annotation& in_obj);
00078     
00084     Annotation& operator=(const CRef& in_ref);
00085 
00092     CString GetURLAt( LONG in_viewid, LONG in_xcoord, LONG in_ycoord ) const;
00093 
00094     private:
00095     Annotation * operator&() const;
00096     Annotation * operator&();
00097 };
00098 
00099 };
00100 
00101 #endif
00102