//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, TableLabel Filename: TableLabel.hxx Module: tccore @BMIDE autogenerated ==================================================================================================*/ #ifndef TEAMCENTER__TABLELABEL__HXX #define TEAMCENTER__TABLELABEL__HXX #include #include #include #include namespace Teamcenter { class TableLabel; } namespace Teamcenter { class TableLabelImpl; } namespace Teamcenter { class TableLabelDelegate; } namespace Teamcenter { class TableLabelDispatch; } namespace Teamcenter { class TableLabelGenImpl; } namespace Teamcenter { class RootObjectImpl; } class TCCORE_API Teamcenter::TableLabel : public ::Teamcenter::POM_object { public: /** * Get the Interface Name * @return - return desc for getInterfaceName */ static const std::string& getInterfaceName(); /// /// Getter for a string Property /// @version Teamcenter 8.1 /// @param value - Parameter value /// @param isNull - Returns true if the Parameter value is null /// @return - Status. 0 if successful /// int getLabel( std::string &value, bool &isNull ) const; /// /// Getter for an Integer Property /// @version Teamcenter 8.1 /// @param value - Parameter Value /// @param isNull - Returns true if the Parameter value is null /// @return - Status. 0 if successful /// int getLocation( int &value, bool &isNull ) const; /// /// Setter for a string Property /// @version Teamcenter 8.1 /// @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 setLabel( const std::string &value, bool isNull=false ); /// /// Setter for an Integer Property /// @version Teamcenter 8.1 /// @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 setLocation( int value, bool isNull=false ); protected: // Method to initialize virtual void initialize( ::Teamcenter::RootObjectImpl* impl ); /** * Constructor */ TableLabel(); /** * Destructor */ virtual ~TableLabel(); private: // Getter method for the Implementation Object TableLabelImpl* getTableLabelImpl() const; // Setter method for the Implementation Object ::Teamcenter::RootObjectImpl* setTableLabelImpl( ::Teamcenter::RootObjectImpl* impl ); // Method to set the delete impl boolean void setDeleteImpl( bool del ); // Pointer to the Implementation object TableLabelImpl* m_tablelabelImpl; // 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 TableLabel - desc for TableLabel parameter */ TableLabel( const TableLabel& ); TableLabel& operator=( const TableLabel& ); friend class TableLabelDelegate; friend class TableLabelDispatch; friend class TableLabelGenImpl; }; #include #endif // TEAMCENTER__TABLELABEL__HXX