mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-22 04:37:23 +08:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
90 lines
2.4 KiB
C++
90 lines
2.4 KiB
C++
// Created on: 1996-10-11
|
|
// Created by: Christian CAILLET
|
|
// Copyright (c) 1996-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 _IGESSelect_SelectSubordinate_HeaderFile
|
|
#define _IGESSelect_SelectSubordinate_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Integer.hxx>
|
|
#include <IFSelect_SelectExtract.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
class Standard_Transient;
|
|
class Interface_InterfaceModel;
|
|
class TCollection_AsciiString;
|
|
|
|
|
|
class IGESSelect_SelectSubordinate;
|
|
DEFINE_STANDARD_HANDLE(IGESSelect_SelectSubordinate, IFSelect_SelectExtract)
|
|
|
|
//! This selections uses Subordinate Status as sort criterium
|
|
//! It is an integer number which can be :
|
|
//! 0 Independant
|
|
//! 1 Physically Dependant
|
|
//! 2 Logically Dependant
|
|
//! 3 Both (recorded)
|
|
//! + to sort :
|
|
//! 4 : 1 or 3 -> at least Physically
|
|
//! 5 : 2 or 3 -> at least Logically
|
|
//! 6 : 1 or 2 or 3 -> any kind of dependance
|
|
//! (corresponds to 0 reversed)
|
|
class IGESSelect_SelectSubordinate : public IFSelect_SelectExtract
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
//! Creates a SelectSubordinate with a status to be sorted
|
|
Standard_EXPORT IGESSelect_SelectSubordinate(const Standard_Integer status);
|
|
|
|
//! Returns the status used for sorting
|
|
Standard_EXPORT Standard_Integer Status() const;
|
|
|
|
//! Returns True if <ent> is an IGES Entity with Subordinate
|
|
//! Status matching the criterium
|
|
Standard_EXPORT Standard_Boolean Sort (const Standard_Integer rank, const Handle(Standard_Transient)& ent, const Handle(Interface_InterfaceModel)& model) const;
|
|
|
|
//! Returns the Selection criterium : "IGES Entity, Independant"
|
|
//! etc...
|
|
Standard_EXPORT TCollection_AsciiString ExtractLabel() const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTI(IGESSelect_SelectSubordinate,IFSelect_SelectExtract)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_Integer thestatus;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IGESSelect_SelectSubordinate_HeaderFile
|