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
1.8 KiB
78 lines
1.8 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, StructDelegate
|
|
Filename: StructDelegate.hxx
|
|
Module: meta
|
|
@BMIDE autogenerated
|
|
==================================================================================================*/
|
|
|
|
#ifndef TEAMCENTER__STRUCTDELEGATE_HXX
|
|
#define TEAMCENTER__STRUCTDELEGATE_HXX
|
|
|
|
#include <common/tc_deprecation_macros.h>
|
|
#include <meta/Struct.hxx>
|
|
|
|
#include <meta/libmeta_exports.h>
|
|
|
|
namespace Teamcenter
|
|
{
|
|
class StructDelegate;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class StructImpl;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Struct;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class StructGenImpl;
|
|
}
|
|
|
|
namespace Teamcenter_alias = ::Teamcenter;
|
|
|
|
|
|
class META_API Teamcenter_alias::StructDelegate
|
|
{
|
|
public:
|
|
// Method to initialize this Class
|
|
static int initializeClass();
|
|
|
|
// Method to get the StructDelegate instance
|
|
static StructDelegate& getInstance();
|
|
|
|
// Method to create the StructImpl pointer
|
|
static StructImpl* createImpl( Struct& ifObj );
|
|
|
|
// Method to delete the StructImpl pointer
|
|
static void deleteImpl( StructImpl* impl );
|
|
|
|
|
|
|
|
protected:
|
|
// Pointer to the instance
|
|
static StructDelegate* m_pInstance;
|
|
|
|
StructDelegate();
|
|
virtual ~StructDelegate();
|
|
static void setInstance( StructDelegate* instance );
|
|
|
|
|
|
private:
|
|
friend class ::Teamcenter::StructGenImpl;
|
|
|
|
};
|
|
|
|
#include <meta/libmeta_undef.h>
|
|
#endif // TEAMCENTER__STRUCTDELEGATE_HXX
|