mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
The macros Status, Convex, Opposite, FillSolid (coming from X11 headers) are now undefined in place of definition of methods with same name in OCCT headers. The usage of variables with name Status is now avoided. GL_GLEXT_LEGACY is now defined only if not already defined. The macros AddPrinter (coming from WinAPI headers) is now undefined within Message_Messenger class definition having method with the same name. CurrentDirectory macro is now undefined in OSD_Process.hxx.
92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
// Created on: 1995-12-01
|
|
// Created by: EXPRESS->CDL V0.2 Translator
|
|
// Copyright (c) 1995-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _StepBasic_ApplicationProtocolDefinition_HeaderFile
|
|
#define _StepBasic_ApplicationProtocolDefinition_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Integer.hxx>
|
|
#include <MMgt_TShared.hxx>
|
|
class TCollection_HAsciiString;
|
|
class StepBasic_ApplicationContext;
|
|
|
|
// resolve name collisions with X11 headers
|
|
#ifdef Status
|
|
#undef Status
|
|
#endif
|
|
|
|
class StepBasic_ApplicationProtocolDefinition;
|
|
DEFINE_STANDARD_HANDLE(StepBasic_ApplicationProtocolDefinition, MMgt_TShared)
|
|
|
|
|
|
class StepBasic_ApplicationProtocolDefinition : public MMgt_TShared
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
//! Returns a ApplicationProtocolDefinition
|
|
Standard_EXPORT StepBasic_ApplicationProtocolDefinition();
|
|
|
|
Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& aStatus, const Handle(TCollection_HAsciiString)& aApplicationInterpretedModelSchemaName, const Standard_Integer aApplicationProtocolYear, const Handle(StepBasic_ApplicationContext)& aApplication);
|
|
|
|
Standard_EXPORT void SetStatus (const Handle(TCollection_HAsciiString)& aStatus);
|
|
|
|
Standard_EXPORT Handle(TCollection_HAsciiString) Status() const;
|
|
|
|
Standard_EXPORT void SetApplicationInterpretedModelSchemaName (const Handle(TCollection_HAsciiString)& aApplicationInterpretedModelSchemaName);
|
|
|
|
Standard_EXPORT Handle(TCollection_HAsciiString) ApplicationInterpretedModelSchemaName() const;
|
|
|
|
Standard_EXPORT void SetApplicationProtocolYear (const Standard_Integer aApplicationProtocolYear);
|
|
|
|
Standard_EXPORT Standard_Integer ApplicationProtocolYear() const;
|
|
|
|
Standard_EXPORT void SetApplication (const Handle(StepBasic_ApplicationContext)& aApplication);
|
|
|
|
Standard_EXPORT Handle(StepBasic_ApplicationContext) Application() const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(StepBasic_ApplicationProtocolDefinition,MMgt_TShared)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Handle(TCollection_HAsciiString) status;
|
|
Handle(TCollection_HAsciiString) applicationInterpretedModelSchemaName;
|
|
Standard_Integer applicationProtocolYear;
|
|
Handle(StepBasic_ApplicationContext) application;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _StepBasic_ApplicationProtocolDefinition_HeaderFile
|