mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
Macro NO_CXX_EXCEPTION was removed from code. Method Raise() was replaced by explicit throw statement. Method Standard_Failure::Caught() was replaced by normal C++mechanism of exception transfer. Method Standard_Failure::Caught() is deprecated now. Eliminated empty constructors. Updated samples. Eliminate empty method ChangeValue from NCollection_Map class. Removed not operable methods from NCollection classes.
86 lines
2.2 KiB
C++
86 lines
2.2 KiB
C++
// Copyright (c) 1998-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.
|
|
|
|
#include <Standard_Type.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <Standard_Atomic.hxx>
|
|
#include <Standard_CString.hxx>
|
|
#include <Standard_ProgramError.hxx>
|
|
|
|
void Standard_Transient::Delete() const
|
|
{
|
|
delete this;
|
|
}
|
|
|
|
const Handle(Standard_Type)& Standard_Transient::get_type_descriptor ()
|
|
{
|
|
return opencascade::type_instance<Standard_Transient>::get();
|
|
}
|
|
|
|
//
|
|
//
|
|
const Handle(Standard_Type)& Standard_Transient::DynamicType() const
|
|
{
|
|
return get_type_descriptor();
|
|
}
|
|
|
|
//
|
|
//
|
|
Standard_Boolean Standard_Transient::IsInstance(const Handle(Standard_Type) &AType) const
|
|
{
|
|
return (AType == DynamicType());
|
|
}
|
|
|
|
//
|
|
//
|
|
Standard_Boolean Standard_Transient::IsInstance(const Standard_CString theTypeName) const
|
|
{
|
|
return IsEqual ( DynamicType()->Name(), theTypeName );
|
|
}
|
|
|
|
//
|
|
//
|
|
Standard_Boolean Standard_Transient::IsKind (const Handle(Standard_Type)& aType) const
|
|
{
|
|
return DynamicType()->SubType ( aType );
|
|
}
|
|
|
|
//
|
|
//
|
|
Standard_Boolean Standard_Transient::IsKind (const Standard_CString theTypeName) const
|
|
{
|
|
return DynamicType()->SubType ( theTypeName );
|
|
}
|
|
|
|
//
|
|
//
|
|
Standard_Transient* Standard_Transient::This() const
|
|
{
|
|
if (GetRefCount() == 0)
|
|
throw Standard_ProgramError("Attempt to create handle to object created in stack, not yet constructed, or destroyed");
|
|
return const_cast<Standard_Transient*> (this);
|
|
}
|
|
|
|
// Increment reference counter
|
|
void Standard_Transient::IncrementRefCounter() const
|
|
{
|
|
Standard_Atomic_Increment (&count);
|
|
}
|
|
|
|
// Decrement reference counter
|
|
Standard_Integer Standard_Transient::DecrementRefCounter() const
|
|
{
|
|
return Standard_Atomic_Decrement (&count);
|
|
}
|