//Copyright 2020 Siemens Digital Industries Software //================================================== //Copyright $2020. //Siemens Product Lifecycle Management Software Inc. //All Rights Reserved. //================================================== //Copyright 2020 Siemens Digital Industries Software /*================================================================================================== File description: This file contains the declaration for the Business Object, PropertyInfo Filename: PropertyInfo.hxx Module: property @BMIDE autogenerated ==================================================================================================*/ #ifndef TEAMCENTER__PROPERTYINFO__HXX #define TEAMCENTER__PROPERTYINFO__HXX #include #include #include #include #include namespace Teamcenter { class PropertyInfo; } namespace Teamcenter { class PropertyInfoImpl; } namespace Teamcenter { class PropertyInfoDelegate; } namespace Teamcenter { class PropertyInfoDispatch; } namespace Teamcenter { class PropertyInfoGenImpl; } namespace Teamcenter { class RootObjectImpl; } class PROPERTY_API Teamcenter::PropertyInfo : public ::Teamcenter::POM_object { public: /** * Get the Interface Name * @return - return desc for getInterfaceName */ static const std::string& getInterfaceName(); /// /// Getter for a Tag Property /// @version Tc 8 /// @param value - Parameter value /// @param isNull - Returns true if the Parameter value is null /// @return - Status. 0 if successful /// int getBusiness_object( tag_t &value, bool &isNull ) const; /// /// Getter for a string Property /// @version Tc 8 /// @param value - Parameter value /// @param isNull - Returns true if the Parameter value is null /// @return - Status. 0 if successful /// int getProperty_name( std::string &value, bool &isNull ) const; /// /// Setter for a Tag Property /// @version Tc 8 /// @param value - Value to be set for the parameter /// @param isNull - If true, set the parameter value to null /// @return - Status. 0 if successful /// int setBusiness_object( const tag_t &value, bool isNull=false ); /// /// Setter for a string Property /// @version Tc 8 /// @param value - Value to be set for the parameter /// @param isNull - If true, set the parameter value to null /// @return - Status. 0 if successful /// int setProperty_name( const std::string &value, bool isNull=false ); protected: // Method to initialize virtual void initialize( ::Teamcenter::RootObjectImpl* impl ); /** * Constructor */ PropertyInfo(); /** * Destructor */ virtual ~PropertyInfo(); private: // Getter method for the Implementation Object PropertyInfoImpl* getPropertyInfoImpl() const; // Setter method for the Implementation Object ::Teamcenter::RootObjectImpl* setPropertyInfoImpl( ::Teamcenter::RootObjectImpl* impl ); // Method to set the delete impl boolean void setDeleteImpl( bool del ); // Pointer to the Implementation object PropertyInfoImpl* m_propertyinfoImpl; // Flag to indicate if Implementation object needs to be deleted bool m_deleteImpl; /** * Name of the Business Object */ static std::string name; /** * Private default constructor. We do not want this class instantiated without the business object passed in. * @param PropertyInfo - desc for PropertyInfo parameter */ PropertyInfo( const PropertyInfo& ); PropertyInfo& operator=( const PropertyInfo& ); friend class PropertyInfoDelegate; friend class PropertyInfoDispatch; friend class PropertyInfoGenImpl; }; #include #endif // TEAMCENTER__PROPERTYINFO__HXX