You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.6 KiB
98 lines
2.6 KiB
//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, TableCellHexDelegate
|
|
Filename: TableCellHexDelegate.hxx
|
|
Module: tccore
|
|
@BMIDE autogenerated
|
|
==================================================================================================*/
|
|
|
|
#ifndef TEAMCENTER__TABLECELLHEXDELEGATE_HXX
|
|
#define TEAMCENTER__TABLECELLHEXDELEGATE_HXX
|
|
|
|
#include <common/tc_deprecation_macros.h>
|
|
#include <tccore/TableCellHex.hxx>
|
|
|
|
#include <tccore/libtccore_exports.h>
|
|
|
|
namespace Teamcenter
|
|
{
|
|
class TableCellHexDelegate;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class TableCellHexImpl;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class TableCellHex;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class TableCellHexGenImpl;
|
|
}
|
|
|
|
namespace Teamcenter_alias = ::Teamcenter;
|
|
|
|
|
|
class TCCORE_API Teamcenter_alias::TableCellHexDelegate
|
|
{
|
|
public:
|
|
// Method to initialize this Class
|
|
static int initializeClass();
|
|
|
|
// Method to get the TableCellHexDelegate instance
|
|
static TableCellHexDelegate& getInstance();
|
|
|
|
// Method to create the TableCellHexImpl pointer
|
|
static TableCellHexImpl* createImpl( TableCellHex& ifObj );
|
|
|
|
// Method to delete the TableCellHexImpl pointer
|
|
static void deleteImpl( TableCellHexImpl* impl );
|
|
|
|
|
|
///
|
|
/// 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 getValueBase(const TableCellHex &ifObj, std::string &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 setValueBase(TableCellHex &ifObj, const std::string &value, bool isNull );
|
|
|
|
|
|
|
|
protected:
|
|
// Pointer to the instance
|
|
static TableCellHexDelegate* m_pInstance;
|
|
|
|
TableCellHexDelegate();
|
|
virtual ~TableCellHexDelegate();
|
|
static void setInstance( TableCellHexDelegate* instance );
|
|
|
|
|
|
private:
|
|
friend class ::Teamcenter::TableCellHexGenImpl;
|
|
|
|
};
|
|
|
|
#include <tccore/libtccore_undef.h>
|
|
#endif // TEAMCENTER__TABLECELLHEXDELEGATE_HXX
|