xsi_port.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 __XSIPORT_H__
00018 #define __XSIPORT_H__
00019 
00020 #include <xsi_siobject.h>
00021 
00022 namespace XSI {
00023 
00024 class ProjectItem;
00025 
00026 //*****************************************************************************
00037 //*****************************************************************************
00038 
00039 class SICPPSDKDECL Port : public SIObject
00040 {
00041 public:
00043     Port();
00044 
00046     ~Port();
00047 
00051     Port(const CRef& in_ref);
00052 
00056     Port(const Port& in_obj);
00057 
00062     bool IsA( siClassID in_ClassID) const;
00063 
00067     siClassID GetClassID() const;
00068 
00074     Port& operator=(const Port& in_obj);
00075 
00081     Port& operator=(const CRef& in_ref);
00082 
00086     bool IsConnected() const;
00087 
00104     LONG GetIndex() const;
00105 
00109     siPortType GetPortType() const;
00110 
00118     CRef GetTarget(void) const;
00119 
00124     LONG GetGroupIndex(void) const;
00125 
00129     CString GetGroupName(void) const;
00130 
00138     LONG GetGroupInstance(void) const;
00139 
00144     siPortFlags GetFlags(void) const;
00145 
00150     bool GetBranchGroup() const;
00151 
00156     CString GetTargetPath() const;
00157 
00158     private:
00159     Port * operator&() const;
00160     Port * operator&();
00161 
00162 
00163 };
00164 
00165 };
00166 
00167 #endif // __XSIPORT_H__