xsi_library.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 __XSI_LIBRARY_H__
00018 #define __XSI_LIBRARY_H__
00019 
00020 #include <xsi_source.h>
00021 
00022 namespace XSI {
00023 
00024 //*****************************************************************************
00192 //*****************************************************************************
00193 class SICPPSDKDECL Library : public Source
00194 {
00195 public:
00197             Library();
00198 
00200     ~Library();
00201 
00205     Library(const CRef& in_ref);
00206 
00210     Library(const Library& in_obj);
00211 
00217     bool IsA( siClassID in_ClassID) const;
00218 
00222     siClassID GetClassID() const;
00223 
00228     Library& operator=(const Library& in_obj);
00229 
00235     Library& operator=(const CRef& in_ref);
00236 
00239     CRefArray GetItems()const;
00240 
00241     private:
00242     Library * operator&() const;
00243     Library * operator&();
00244 };
00245 
00246 };
00247 
00248 #endif // __XSI_LIBRARY_H__