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.
78 lines
2.1 KiB
78 lines
2.1 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, ValidationParamsDelegate
|
|
Filename: ValidationParamsDelegate.hxx
|
|
Module: validation
|
|
@BMIDE autogenerated
|
|
==================================================================================================*/
|
|
|
|
#ifndef TEAMCENTER__VALIDATIONPARAMSDELEGATE_HXX
|
|
#define TEAMCENTER__VALIDATIONPARAMSDELEGATE_HXX
|
|
|
|
#include <common/tc_deprecation_macros.h>
|
|
#include <validation/ValidationParams.hxx>
|
|
|
|
#include <validation/libvalidation_exports.h>
|
|
|
|
namespace Teamcenter
|
|
{
|
|
class ValidationParamsDelegate;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class ValidationParamsImpl;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class ValidationParams;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class ValidationParamsGenImpl;
|
|
}
|
|
|
|
namespace Teamcenter_alias = ::Teamcenter;
|
|
|
|
|
|
class VALIDATION_API Teamcenter_alias::ValidationParamsDelegate
|
|
{
|
|
public:
|
|
// Method to initialize this Class
|
|
static int initializeClass();
|
|
|
|
// Method to get the ValidationParamsDelegate instance
|
|
static ValidationParamsDelegate& getInstance();
|
|
|
|
// Method to create the ValidationParamsImpl pointer
|
|
static ValidationParamsImpl* createImpl( ValidationParams& ifObj );
|
|
|
|
// Method to delete the ValidationParamsImpl pointer
|
|
static void deleteImpl( ValidationParamsImpl* impl );
|
|
|
|
|
|
|
|
protected:
|
|
// Pointer to the instance
|
|
static ValidationParamsDelegate* m_pInstance;
|
|
|
|
ValidationParamsDelegate();
|
|
virtual ~ValidationParamsDelegate();
|
|
static void setInstance( ValidationParamsDelegate* instance );
|
|
|
|
|
|
private:
|
|
friend class ::Teamcenter::ValidationParamsGenImpl;
|
|
|
|
};
|
|
|
|
#include <validation/libvalidation_undef.h>
|
|
#endif // TEAMCENTER__VALIDATIONPARAMSDELEGATE_HXX
|