1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/Standard/Standard_Transient.hxx
abv f5f4ebd07b 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- manual
Restored possibility to have out-of-line implementation of DynamicCast() and STANDART_TYPE():
- Macro STANDARD_TYPE() now resolves to function get_type_descriptor() of the class
- Macro DEFINE_STANDARD_RTTI is replaced by two variants:
  - DEFINE_STANDARD_RTTI_INLINE works as before, defining DynamicCast() and get_type_descriptor() as inline functions
  - DEFINE_STANDARD_RTTIEXT declares DynamicCast() and get_type_descriptor() as exported
- Macro IMPLEMENT_STANDARD_RTTIEXT provides definition of DynamicCast() and get_type_descriptor() for a class

Upgrade script amended to replace DEFINE_STANDARD_RTTI by pair of DEFINE_STANDARD_RTTIEXT / IMPLEMENT_STANDARD_RTTIEXT if source file with the same name as header is found in the same folder, and by DEFINE_STANDARD_RTTI_INLINE if either source is not found or class is defined in the source (i.e. not in header)

Upgrade tool improved to recognize include statements with path prefix, like #include <occt/gp_Pnt.hxx>
Code corrected to eliminate warnings reported by upgrade tool.
Template of CXX file for testing upgrade tool added.

Documentation of upgrade procedure updated.
2015-12-04 13:57:58 +03:00

118 lines
4.1 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.
#ifndef _Standard_Transient_HeaderFile
#define _Standard_Transient_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_PrimitiveTypes.hxx>
class Standard_Type;
namespace opencascade {
template <class T> class handle;
}
//! Abstract class which forms the root of the entire
//! Transient class hierarchy.
class Standard_Transient
{
public:
// Standard OCCT memory allocation stuff
DEFINE_STANDARD_ALLOC
public:
//! Empty constructor
Standard_Transient() : count(0) {}
//! Copy constructor -- does nothing
Standard_Transient (const Standard_Transient&) : count(0) {}
//! Assignment operator, needed to avoid copying reference counter
Standard_Transient& operator= (const Standard_Transient&) { return *this; }
//! Destructor must be virtual
virtual ~Standard_Transient() {}
//! Memory deallocator for transient classes
Standard_EXPORT virtual void Delete() const;
public:
//!@name Support of run-time type information (RTTI)
typedef void base_type;
static const char* get_type_name () { return "Standard_Transient"; }
//! Returns type descriptor of Standard_Transient class
Standard_EXPORT static const opencascade::handle<Standard_Type>& get_type_descriptor ();
//! Returns a type descriptor about this object.
Standard_EXPORT virtual const opencascade::handle<Standard_Type>& DynamicType() const;
//! Returns a true value if this is an instance of Type.
Standard_EXPORT Standard_Boolean IsInstance(const opencascade::handle<Standard_Type>& theType) const;
//! Returns a true value if this is an instance of TypeName.
Standard_EXPORT Standard_Boolean IsInstance(const Standard_CString theTypeName) const;
//! Returns true if this is an instance of Type or an
//! instance of any class that inherits from Type.
//! Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Standard_EXPORT Standard_Boolean IsKind(const opencascade::handle<Standard_Type>& theType) const;
//! Returns true if this is an instance of TypeName or an
//! instance of any class that inherits from TypeName.
//! Note that multiple inheritance is not supported by OCCT RTTI mechanism.
Standard_EXPORT Standard_Boolean IsKind(const Standard_CString theTypeName) const;
//! Returns non-const pointer to this object (like const_cast).
//! For protection against creating handle to objects allocated in stack
//! or call from constructor, it will raise exception Standard_ProgramError
//! if reference counter is zero.
Standard_EXPORT Standard_Transient* This() const;
public:
//!@name Reference counting, for use by handle<>
//! Get the reference counter of this object
Standard_EXPORT Standard_Integer GetRefCount() const { return count; }
//! Increments the reference counter of this object
Standard_EXPORT void IncrementRefCounter() const;
//! Decrements the reference counter of this object;
//! returns the decremented value
Standard_EXPORT Standard_Integer DecrementRefCounter() const;
private:
//! Reference counter
mutable volatile Standard_Integer count;
};
//! Global method HashCode(), for use in hash maps
inline Standard_Integer HashCode (const Standard_Transient* theObject, const Standard_Integer theUpper)
{
return ::HashCode ((Standard_Address*)theObject, theUpper);
}
//! Definition of Handle_Standard_Transient as typedef for compatibility
typedef opencascade::handle<Standard_Transient> Handle_Standard_Transient;
#endif