mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-24 13:50:49 +03:00
0024814: Avoid using explicit names of Handle classes
Sources corrected replacing Handle_XXX by Handle(XXX)
This commit is contained in:
@@ -17,6 +17,6 @@
|
||||
|
||||
#include <NCollection_BaseAllocator.hxx>
|
||||
|
||||
typedef Handle_NCollection_BaseAllocator BOPCol_BaseAllocator;
|
||||
typedef Handle(NCollection_BaseAllocator) BOPCol_BaseAllocator;
|
||||
|
||||
#endif
|
||||
|
@@ -29,7 +29,7 @@ template <class Type> class BOPCol_NCVector
|
||||
{
|
||||
public:
|
||||
BOPCol_NCVector(const Standard_Integer theIncrement=256,
|
||||
const Handle_NCollection_BaseAllocator& theAlloc = NULL)
|
||||
const Handle(NCollection_BaseAllocator)& theAlloc = NULL)
|
||||
: NCollection_Vector<Type>(theIncrement, theAlloc) {
|
||||
};
|
||||
//
|
||||
|
Reference in New Issue
Block a user