1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Error Corrections

This commit is contained in:
aba 2013-08-14 17:49:19 +04:00 committed by apn
parent aba5fc1923
commit fd45dddd93
17 changed files with 1184 additions and 241 deletions

View File

@ -55,7 +55,6 @@
#include <Transfer_FinderProcess.hxx>
#include <TransferBRep_ShapeMapper.hxx>
#include <TransferBRep_OrientedShapeMapper.hxx>
#include <Transfer_TransientMapper.hxx>
#include <Transfer_SimpleBinderOfTransient.hxx>

View File

@ -130,7 +130,6 @@
#include <Transfer_FinderProcess.hxx>
#include <TransferBRep_ShapeMapper.hxx>
#include <TransferBRep_OrientedShapeMapper.hxx>
#include <Transfer_TransientMapper.hxx>
#include <Transfer_SimpleBinderOfTransient.hxx>
#include <Interface_Static.hxx>

View File

@ -22,7 +22,7 @@
#ifndef _IGESBasic_HArray1OfHArray1Real_Handle_HeaderFile
#define _IGESBasic_HArray1OfHArray1Real_Handle_HeaderFile
#include <IGESBasic_HArray1OfHArray1Ofreal.hxx>
#include <IGESBasic_HArray1OfHArray1OfReal.hxx>
typedef Handle(IGESBasic_HArray1OfHArray1OfReal) IGESBasic_HArray1OfHArray1OfReal_Handle;

View File

@ -22,7 +22,7 @@ typedef LibCtl_GlobalNode <Handle(IGESData_SpecificModule),
IGESData_GlobalNodeOfSpecificLib;
template<>
Standard_EXPORT static NCollection_Handle< IGESData_GlobalNodeOfSpecificLib >&
Standard_EXPORT NCollection_Handle< IGESData_GlobalNodeOfSpecificLib >&
IGESData_SpecificLib::GetGlobal()
{
static NCollection_Handle< IGESData_GlobalNodeOfSpecificLib > aGlobal;

View File

@ -22,7 +22,7 @@ typedef LibCtl_GlobalNode <Handle(IGESData_ReadWriteModule),
IGESData_GlobalNodeOfWriterLib;
template<>
Standard_EXPORT static NCollection_Handle< IGESData_GlobalNodeOfWriterLib >&
Standard_EXPORT NCollection_Handle< IGESData_GlobalNodeOfWriterLib >&
IGESData_WriterLib::GetGlobal()
{
static NCollection_Handle< IGESData_GlobalNodeOfWriterLib > aGlobal;

View File

@ -31,7 +31,6 @@
#include <TColgp_HArray1OfXY.hxx>
#include <TColStd_HArray1OfInteger.hxx>
#include <IGESBasic_HArray1OfHArray1OfInteger.hxx>
#include <IGESBasic_HArray1OfHArray1OfXY.hxx>
#include <IGESData_Dump.hxx>
#include <Interface_Macros.hxx>

View File

@ -22,7 +22,7 @@ typedef LibCtl_GlobalNode <Handle(Interface_GeneralModule),
Interface_GlobalNodeOfGeneralLib;
template<>
Standard_EXPORT static NCollection_Handle< Interface_GlobalNodeOfGeneralLib >&
Standard_EXPORT NCollection_Handle< Interface_GlobalNodeOfGeneralLib >&
Interface_GeneralLib::GetGlobal()
{
static NCollection_Handle< Interface_GlobalNodeOfGeneralLib > aGlobal;

View File

@ -22,7 +22,7 @@ typedef LibCtl_GlobalNode <Handle(Interface_ReaderModule),
Interface_GlobalNodeOfReaderLib;
template<>
Standard_EXPORT static NCollection_Handle< Interface_GlobalNodeOfReaderLib >&
Standard_EXPORT NCollection_Handle< Interface_GlobalNodeOfReaderLib >&
Interface_ReaderLib::GetGlobal()
{
static NCollection_Handle< Interface_GlobalNodeOfReaderLib > aGlobal;

View File

@ -71,11 +71,11 @@ protected:
myHasNext = Standard_False;
}
Standard_EXPORT void Interface_Recognizer::SetOK (const ResultType& theResult)
Standard_EXPORT void SetOK (const ResultType& theResult)
{
myRes = theResult;
}
Standard_EXPORT void Interface_Recognizer::SetKO ()
Standard_EXPORT void SetKO ()
{
myRes.Nullify();
}

View File

@ -31,15 +31,14 @@ template <class ModuleType, class ProtocolType>
class LibCtl_Node
{
private:
typedef LibCtl_GlobalNode<ModuleType, ProtocolType> LibCtl_GlobalNode;
NCollection_Handle < LibCtl_GlobalNode > myNode;
NCollection_Handle < LibCtl_GlobalNode<ModuleType, ProtocolType> > myNode;
NCollection_Handle < LibCtl_Node > myNext;
public:
Standard_EXPORT LibCtl_Node ();
Standard_EXPORT void AddNode (const NCollection_Handle< LibCtl_GlobalNode >& theNode);
Standard_EXPORT void AddNode (const NCollection_Handle< LibCtl_GlobalNode<ModuleType, ProtocolType> >& theNode);
Standard_EXPORT const ModuleType& Module () const;
Standard_EXPORT const ProtocolType& Protocol () const;
Standard_EXPORT const NCollection_Handle< LibCtl_Node >& Next () const;
@ -53,7 +52,7 @@ LibCtl_Node<ModuleType,ProtocolType>
//! Adds a couple (Module,Protocol), that is, stores it into
//! itself if not yet done, else creates a Next Node to do it.
template<class ModuleType, class ProtocolType>
void LibCtl_Node<ModuleType,ProtocolType>::AddNode (const NCollection_Handle< LibCtl_GlobalNode >& theNode)
void LibCtl_Node<ModuleType,ProtocolType>::AddNode (const NCollection_Handle< LibCtl_GlobalNode<ModuleType, ProtocolType> >& theNode)
{
if (myNode == theNode) return;
if (myNext.IsNull()) {
@ -181,29 +180,25 @@ LibCtl_GlobalNode <ModuleType,ProtocolType>::Next () const
template <class ObjectType, class ModuleType, class ProtocolType>
class LibCtl_Library
{
public:
// Type definitions for template classes
typedef LibCtl_GlobalNode<ModuleType, ProtocolType> LibCtl_GlobalNode;
typedef LibCtl_Node<ModuleType, ProtocolType> LibCtl_Node;
public:
// Basic data for optimization (Protocol last request)
static ProtocolType myProtocol;
static NCollection_Handle< LibCtl_Node > myLast;
static NCollection_Handle< LibCtl_Node<ModuleType, ProtocolType> > myLast;
DEFINE_STANDARD_ALLOC
private:
NCollection_Handle< LibCtl_Node > myList;
NCollection_Handle< LibCtl_Node > myCurr;
NCollection_Handle< LibCtl_Node<ModuleType, ProtocolType> > myList;
NCollection_Handle< LibCtl_Node<ModuleType, ProtocolType> > myCurr;
public:
//! Gets global list of modules
static NCollection_Handle< LibCtl_GlobalNode >& GetGlobal();
static NCollection_Handle< LibCtl_GlobalNode<ModuleType, ProtocolType> >& GetGlobal();
//! Supply the global list
Standard_EXPORT static void SetGlobal (const ModuleType& theModule, const ProtocolType& theProtocol)
{
if (GetGlobal().IsNull()) GetGlobal() = new LibCtl_GlobalNode;
if (GetGlobal().IsNull()) GetGlobal() = new LibCtl_GlobalNode<ModuleType, ProtocolType>;
GetGlobal()->Add(theModule,theProtocol);
}
@ -238,7 +233,7 @@ public:
ProtocolType aProtocol = ProtocolType::DownCast(theProtocol);
if (aProtocol.IsNull()) return;
NCollection_Handle< LibCtl_GlobalNode > curr;
NCollection_Handle< LibCtl_GlobalNode<ModuleType, ProtocolType> > curr;
for (curr = GetGlobal(); !curr.IsNull(); )
{
const ProtocolType& aProtocol = curr->Protocol();
@ -248,7 +243,7 @@ public:
if (aProtocol->DynamicType() == theProtocol->DynamicType())
{
if (myList.IsNull())
myList = new LibCtl_Node;
myList = new LibCtl_Node<ModuleType, ProtocolType>;
myList->AddNode(curr);
break; // UN SEUL MODULE PAR PROTOCOLE
@ -269,14 +264,14 @@ public:
Standard_EXPORT void Clear ()
{
myList = new LibCtl_Node();
myList = new LibCtl_Node <ModuleType, ProtocolType>;
}
Standard_EXPORT void SetComplete ()
{
myList = new LibCtl_Node;
myList = new LibCtl_Node <ModuleType, ProtocolType>;
// Take each of the protocols of the Global list
NCollection_Handle< LibCtl_GlobalNode > curr;
NCollection_Handle< LibCtl_GlobalNode<ModuleType, ProtocolType> > curr;
for (curr = GetGlobal(); !curr.IsNull(); )
{
const ProtocolType& aProtocol = curr->Protocol();
@ -296,7 +291,7 @@ public:
theModule.Nullify(); theCN = 0;
if (myList.IsNull())
return Standard_False;
NCollection_Handle< LibCtl_Node > curr = myList;
NCollection_Handle< LibCtl_Node<ModuleType, ProtocolType> > curr = myList;
for (curr = myList; !curr.IsNull(); )
{
const ProtocolType& aProtocol = curr->Protocol();
@ -325,7 +320,7 @@ public:
return (!myCurr.IsNull());
}
Standard_EXPORT void LibCtl_Library::Next ()
Standard_EXPORT void Next ()
{
if (!myCurr.IsNull())
myCurr = myCurr->Next();

View File

@ -23,7 +23,7 @@ typedef LibCtl_GlobalNode <Handle(StepData_ReadWriteModule),
StepData_GlobalNode;
template <>
Standard_EXPORT static NCollection_Handle< StepData_GlobalNode > &
Standard_EXPORT NCollection_Handle< StepData_GlobalNode > &
StepData_WriterLib::GetGlobal()
{
static NCollection_Handle < StepData_GlobalNode > aGlobal;

View File

@ -107,7 +107,7 @@ public:
//! If it is False (creation default), each add Actor is
//! set at the beginning of the list.
//! This allows to define default Actors (which are Last).
Standard_EXPORT void SetLast (const Standard_Boolean theMode)
Standard_EXPORT void SetLast (const Standard_Boolean theMode = Standard_True)
{
myLast = theMode;
}

View File

@ -39,7 +39,12 @@ IMPLEMENT_DOWNCAST(Transfer_FinderProcess,Standard_Transient)
IMPLEMENT_STANDARD_RTTI(Transfer_FinderProcess)
Transfer_FinderProcess::Transfer_FinderProcess (const Standard_Integer theNb)
: Transfer_TransferProcess (theNb) { }
: Transfer_TransferProcess < Handle(Transfer_ActorOfFinderProcess),
Transfer_TransferMapOfProcessForFinder,
Handle(Transfer_Finder),
Transfer_FindHasher,
Handle(Transfer_HSequenceOfFinder),
Transfer_IteratorOfProcessForFinder > (theNb) { }
void Transfer_FinderProcess::SetModel (const Handle(Interface_InterfaceModel)& theModel)
{

File diff suppressed because it is too large Load Diff

View File

@ -49,7 +49,13 @@ IMPLEMENT_STANDARD_RTTI(Transfer_TransientProcess)
//=======================================================================
Transfer_TransientProcess::Transfer_TransientProcess
(const Standard_Integer theNb) : Transfer_TransferProcess (theNb)
(const Standard_Integer theNb)
: Transfer_TransferProcess < Handle(Transfer_ActorOfTransientProcess),
Transfer_TransferMapOfProcessForTransient,
Handle(Standard_Transient),
TColStd_MapTransientHasher,
Handle(TColStd_HSequenceOfTransient),
Transfer_IteratorOfProcessForTransient > (theNb)
{
theTrRoots = new TColStd_HSequenceOfTransient;
}

View File

@ -72,20 +72,20 @@ class Transfer_TransientProcess
public:
//! Sets TransientProcess at initial state, with an initial size <br>
Standard_EXPORT Transfer_TransientProcess(const Standard_Integer theNb = 10000);
Standard_EXPORT Transfer_TransientProcess (const Standard_Integer theNb = 10000);
//! Sets an InterfaceModel, used by StartTrace, CheckList, queries <br>
//! on Integrity, to give informations significant for each norm. <br>
Standard_EXPORT void SetModel(const Handle(Interface_InterfaceModel)& theModel) ;
Standard_EXPORT void SetModel (const Handle(Interface_InterfaceModel)& theModel) ;
//! Returns the Model used for StartTrace <br>
Standard_EXPORT Handle_Interface_InterfaceModel Model() const;
Standard_EXPORT Handle_Interface_InterfaceModel Model () const;
//! Sets a Graph : superseedes SetModel if already done <br>
Standard_EXPORT void SetGraph(const Handle(Interface_HGraph)& theHG) ;
Standard_EXPORT Standard_Boolean HasGraph() const;
Standard_EXPORT Standard_Boolean HasGraph () const;
Standard_EXPORT Handle_Interface_HGraph HGraph() const;
Standard_EXPORT Handle_Interface_HGraph HGraph () const;
Standard_EXPORT const Interface_Graph& Graph() const;
Standard_EXPORT const Interface_Graph& Graph () const;
//! Sets a Context : according to receiving appli, to be <br>
//! interpreted by the Actor <br>
Standard_EXPORT void SetContext (const Standard_CString theName,
@ -98,7 +98,7 @@ public:
Handle(Standard_Transient)& theCtx) const;
//! Returns (modifiable) the whole definition of Context <br>
//! Rather for internal use (ex.: preparing and setting in once) <br>
Standard_EXPORT Handle_Dico_DictionaryOfTransient& Context() ;
Standard_EXPORT Handle_Dico_DictionaryOfTransient& Context () ;
//! Specific printing to trace an entity : prints label and type <br>
//! (if model is set) <br>
Standard_EXPORT virtual void PrintTrace (const Handle(Standard_Transient)& theStart,
@ -121,7 +121,7 @@ public:
//! syntactic, or semantic check). Normally, should answer False. <br>
//! It is not prudent to try transferring an entity which fails on <br>
//! data checking <br>
Standard_EXPORT Standard_Boolean IsDataFail(const Handle(Standard_Transient)& theEnt) const;
Standard_EXPORT Standard_Boolean IsDataFail (const Handle(Standard_Transient)& theEnt) const;
//! Prints statistics on a given output, according mode <br>
Standard_EXPORT void PrintStats (const Standard_Integer theMode,
const Handle(Message_Messenger)& theMessenger) const;

View File

@ -46,7 +46,6 @@
//#include <TransferBRep_ShapeBinder.hxx>
//#include <TransferBRep_ShapeListBinder.hxx>
//#include <TransferBRep_ShapeMapper.hxx>
//#include <TransferBRep_OrientedShapeMapper.hxx>
#include <XSControl_TransferWriter.hxx>
#include <XSControl_TransferReader.hxx>