xsi_outputport.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 __XSIOUTPUTPORT_H__
00018 #define __XSIOUTPUTPORT_H__
00019 
00020 #include <xsi_port.h>
00021 
00022 namespace XSI {
00023 
00024 class CValue;
00025 
00026 //*****************************************************************************
00032 //*****************************************************************************
00033 class SICPPSDKDECL OutputPort : public Port
00034 {
00035 public:
00037     OutputPort();
00038 
00040     ~OutputPort();
00041 
00045     OutputPort(const CRef& in_ref);
00046 
00050     OutputPort(const OutputPort& in_obj);
00051 
00056     bool IsA( siClassID in_ClassID) const;
00057 
00061     siClassID GetClassID() const;
00062 
00068     OutputPort& operator=(const OutputPort& in_obj);
00069 
00075     OutputPort& operator=(const CRef& in_ref);
00076 
00080     CValue GetValue() const;
00081 
00087     CStatus PutValue( CValue in_val);
00088 
00093     bool GetCreated() const;
00094 
00095     private:
00096     OutputPort * operator&() const;
00097     OutputPort * operator&();
00098 };
00099 
00100 
00101 };
00102 
00103 #endif // __XSIOUTPUTPORT_H__