mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-11 00:37:04 +08:00
Implementation of global functions STANDARD_TYPE() for types not inheriting Standard_Transient or Standard_Persistent are eliminated. Global functions and class methods ShallowCopy() are removed; also removed unused classes Visual3d_PickPath and Visual3d_PickDescriptor. Global functions and class methods ShallowDump() are removed, except for classes Standard_GUID, TopLoc_Datum, and TopLoc_Location as the latter are still used in some Debug printouts.
54 lines
2.1 KiB
Plaintext
54 lines
2.1 KiB
Plaintext
-- Created on: 1991-09-05
|
|
-- Created by: jean pierre TIRAULT
|
|
-- Copyright (c) 1991-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.
|
|
|
|
deferred class Storable from Standard
|
|
|
|
---Purpose: This class Storable is an abstract class that allows built-in
|
|
-- primitive types to be extended. They are not themselves
|
|
-- persistent, but are known by the database, therefore can be used
|
|
-- to define the internal representation of persistent objects.
|
|
-- Otherwise, all the fields of subclasses of Object MUST inherit
|
|
-- from Storable.
|
|
--
|
|
-- This class provides also a framework for copying, comparing and
|
|
-- printing.
|
|
|
|
is
|
|
Delete ( me : out ) is virtual;
|
|
---C++: alias "Standard_EXPORT virtual ~Standard_Storable(){Delete();}"
|
|
|
|
HashCode (me; Upper : Integer ) returns Integer is virtual;
|
|
---Purpose: Returns a hashed value denoting <me>. This value is in
|
|
-- the range 1..<Upper>.
|
|
---C++: function call
|
|
---Level: Advanced
|
|
|
|
IsEqual (me; Other : Storable) returns Boolean
|
|
---Purpose: Returns true if the direct contents of <me> and
|
|
-- <Other> are memberwise equal.
|
|
---C++: alias operator ==
|
|
---Level: Public
|
|
is static;
|
|
|
|
IsSimilar (me; Other : Storable) returns Boolean;
|
|
---Purpose: Returns true if the Deep contents of <me> and
|
|
-- <Other> are memberwise equal.
|
|
---C++: function call
|
|
---Level: Public
|
|
|
|
end Storable;
|
|
|