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.
155 lines
4.2 KiB
155 lines
4.2 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, Mfg0BvrFlow
|
|
Filename: Mfg0BvrFlow.hxx
|
|
Module: mfgbvr
|
|
@BMIDE autogenerated
|
|
==================================================================================================*/
|
|
|
|
#ifndef TEAMCENTER__MFG0BVRFLOW__HXX
|
|
#define TEAMCENTER__MFG0BVRFLOW__HXX
|
|
|
|
#include <unidefs.h>
|
|
#include <common/tc_deprecation_macros.h>
|
|
#include <metaframework/RuntimeBusinessObject.hxx>
|
|
|
|
#include <mfgbvr/libmfgbvr_exports.h>
|
|
|
|
namespace Teamcenter
|
|
{
|
|
class Mfg0BvrFlow;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Mfg0BvrFlowImpl;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Mfg0BvrFlowDelegate;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Mfg0BvrFlowDispatch;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Mfg0BvrFlowGenImpl;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class RootObjectImpl;
|
|
}
|
|
|
|
class MFGBVR_API Teamcenter::Mfg0BvrFlow
|
|
: public ::Teamcenter::RuntimeBusinessObject
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Get the Interface Name
|
|
* @return - return desc for getInterfaceName
|
|
*/
|
|
static const std::string& getInterfaceName();
|
|
|
|
|
|
///
|
|
/// Getter for a Double 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 getMfg0delay( double &value, bool &isNull ) const;
|
|
|
|
///
|
|
/// Getter for a Boolean 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 getMfg0implicit( bool &value, bool &isNull ) const;
|
|
|
|
///
|
|
/// Getter for a Tag 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 getMfg0predecessor( tag_t &value, bool &isNull ) const;
|
|
|
|
///
|
|
/// Getter for a Tag 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 getMfg0successor( tag_t &value, bool &isNull ) const;
|
|
|
|
///
|
|
/// Setter for a Double 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 setMfg0delay( double value, bool isNull=false );
|
|
protected:
|
|
// Method to initialize
|
|
virtual void initialize( ::Teamcenter::RootObjectImpl* impl );
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
Mfg0BvrFlow();
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
virtual ~Mfg0BvrFlow();
|
|
|
|
private:
|
|
// Getter method for the Implementation Object
|
|
Mfg0BvrFlowImpl* getMfg0BvrFlowImpl() const;
|
|
// Setter method for the Implementation Object
|
|
::Teamcenter::RootObjectImpl* setMfg0BvrFlowImpl( ::Teamcenter::RootObjectImpl* impl );
|
|
|
|
// Method to set the delete impl boolean
|
|
void setDeleteImpl( bool del );
|
|
|
|
// Pointer to the Implementation object
|
|
Mfg0BvrFlowImpl* m_mfg0bvrflowImpl;
|
|
|
|
// 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 Mfg0BvrFlow - desc for Mfg0BvrFlow parameter
|
|
*/
|
|
Mfg0BvrFlow( const Mfg0BvrFlow& );
|
|
Mfg0BvrFlow& operator=( const Mfg0BvrFlow& );
|
|
|
|
friend class Mfg0BvrFlowDelegate;
|
|
friend class Mfg0BvrFlowDispatch;
|
|
friend class Mfg0BvrFlowGenImpl;
|
|
};
|
|
|
|
#include <mfgbvr/libmfgbvr_undef.h>
|
|
#endif // TEAMCENTER__MFG0BVRFLOW__HXX
|