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 __XSISCHEMATIC_H__
00018 #define __XSISCHEMATIC_H__
00019
00020 #include <xsi_view.h>
00021
00022 namespace XSI {
00023
00024 class SchematicNode;
00025
00026
00075
00076
00077 class SICPPSDKDECL Schematic : public View
00078 {
00079 public:
00080
00082 Schematic();
00083
00085 ~Schematic();
00086
00090 Schematic(const CRef& in_ref);
00091
00095 Schematic(const Schematic& in_obj);
00096
00101 bool IsA( siClassID in_ClassID) const;
00102
00106 siClassID GetClassID() const;
00107
00113 Schematic& operator=(const Schematic& in_obj);
00114
00120 Schematic& operator=(const CRef& in_ref);
00121
00126 SchematicNode FindNode( const CRef& in_pObject ) ;
00127
00133 CRefArray GetNodes( ) const;
00134
00138 CRefArray GetSelectedNodes( ) const;
00139
00140 private:
00141 Schematic * operator&() const;
00142 Schematic * operator&();
00143 };
00144
00145 };
00146
00147 #endif
00148