xsi_inputport.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 __XSIINPUTPORT_H__
00018 #define __XSIINPUTPORT_H__
00019 
00020 #include <xsi_port.h>
00021 
00022 namespace XSI {
00023 
00024 class CValue;
00025 
00026 //*****************************************************************************
00032 //*****************************************************************************
00033 class SICPPSDKDECL InputPort : public Port
00034 {
00035 public:
00037     InputPort();
00038 
00040     ~InputPort();
00041 
00045     InputPort(const CRef& in_ref);
00046 
00050     InputPort(const InputPort& in_obj);
00051 
00056     bool IsA( siClassID in_ClassID) const;
00057 
00061     siClassID GetClassID() const;
00062 
00068     InputPort& operator=(const InputPort& in_obj);
00069 
00075     InputPort& operator=(const CRef& in_ref);
00076 
00082     CValue GetValue() const;
00083 
00088     bool GetOptional() const;
00089 
00090     private:
00091     InputPort * operator&() const;
00092     InputPort * operator&();
00093 };
00094 
00095 
00096 };
00097 
00098 #endif // __XSIPORT_H__