xsi_layer.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 __XSILAYER_H__
00018 #define __XSILAYER_H__
00019 
00020 #include <xsi_group.h>
00021 
00022 namespace XSI {
00023 
00024 //*****************************************************************************
00069 //*****************************************************************************
00070 class SICPPSDKDECL Layer : public Group
00071 {
00072 public:
00074     Layer();
00075 
00077     ~Layer();
00078 
00082     Layer(const CRef& in_ref);
00083 
00087     Layer(const Layer& in_obj);
00088 
00093     bool IsA( siClassID in_ClassID) const;
00094 
00098     siClassID GetClassID() const;
00099 
00105     Layer& operator=(const Layer& in_obj);
00106 
00112     Layer& operator=(const CRef& in_ref);
00113 
00119     CRefArray GetLayers(  ) const;
00124     CStatus AddLayer( const Layer& in_member ) ;
00129     CStatus RemoveLayer( const Layer& in_member ) ;
00130 
00131     private:
00132     Layer * operator&() const;
00133     Layer * operator&();
00134 
00135     public:
00136 
00137 
00138 };
00139 
00140 };
00141 
00142 #endif // __XSILAYER_H__