mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0024742: Remove rarely used collection classes: Stack
Generic class TCollection_Stack removed (along with TCollection_StackIterator and TCollection_StackNode). Code using TCollection_Stack changed to equivalent use of TCollection_List (replacing Push -> Prepend, Top -> First, Pop -> RemoveFirst).
This commit is contained in:
@@ -64,6 +64,6 @@ is
|
||||
class DocumentHasher instantiates MapHasher from TCollection(Document from CDM);
|
||||
class MapOfDocument instantiates Map from TCollection(Document from CDM, DocumentHasher from CDM);
|
||||
class ListOfDocument instantiates List from TCollection(Document from CDM);
|
||||
class StackOfDocument instantiates Stack from TCollection(Document from CDM);
|
||||
class StackOfDocument instantiates List from TCollection(Document from CDM);
|
||||
|
||||
end CDM;
|
||||
|
Reference in New Issue
Block a user