mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
0031939: Coding - correction of spelling errors in comments [part 3]
Fix various typos Fixed via `codespell v2.1.dev0`
This commit is contained in:
@@ -62,7 +62,7 @@ public:
|
||||
|
||||
//! Specific action of Transfer. The Result is stored in
|
||||
//! the returned Binder, or a Null Handle for "No result"
|
||||
//! (Default defined as doing nothing; should be deffered)
|
||||
//! (Default defined as doing nothing; should be deferred)
|
||||
//! "mutable" allows the Actor to record intermediate
|
||||
//! information, in addition to those of TransferProcess
|
||||
Standard_EXPORT virtual Handle(Transfer_Binder) Transferring
|
||||
|
@@ -61,7 +61,7 @@ public:
|
||||
|
||||
//! Specific action of Transfer. The Result is stored in
|
||||
//! the returned Binder, or a Null Handle for "No result"
|
||||
//! (Default defined as doing nothing; should be deffered)
|
||||
//! (Default defined as doing nothing; should be deferred)
|
||||
//! "mutable" allows the Actor to record intermediate
|
||||
//! information, in addition to those of TransferProcess
|
||||
Standard_EXPORT virtual Handle(Transfer_Binder) Transferring
|
||||
|
@@ -112,7 +112,7 @@ public:
|
||||
//! (for StatusError, rather use SetError, below)
|
||||
Standard_EXPORT void SetStatusExec (const Transfer_StatusExec stat);
|
||||
|
||||
//! Used to declare an individual transfer as beeing erroneous
|
||||
//! Used to declare an individual transfer as being erroneous
|
||||
//! (Status is set to Void, StatusExec is set to Error, <errmess>
|
||||
//! is added to Check's list of Fails)
|
||||
//! It is possible to record several messages of error
|
||||
|
@@ -26,7 +26,7 @@
|
||||
class Standard_Transient;
|
||||
|
||||
|
||||
//! Gives informations on an object
|
||||
//! Gives information on an object
|
||||
//! Used as template to instantiate Mapper and SimpleBinder
|
||||
//! This class is for Transient
|
||||
class Transfer_DataInfo
|
||||
|
@@ -52,7 +52,7 @@ public:
|
||||
//! sub-classes, the result is the same)
|
||||
Standard_EXPORT Standard_Integer GetHashCode() const;
|
||||
|
||||
//! Specific testof equallity : to be defined by each sub-class,
|
||||
//! Specific testof equality : to be defined by each sub-class,
|
||||
//! must be False if Finders have not the same true Type, else
|
||||
//! their contents must be compared
|
||||
Standard_EXPORT virtual Standard_Boolean Equates (const Handle(Transfer_Finder)& other) const = 0;
|
||||
|
@@ -62,7 +62,7 @@ public:
|
||||
Standard_EXPORT Transfer_MultipleBinder();
|
||||
|
||||
//! Returns True if a starting object is bound with SEVERAL
|
||||
//! results : Here, returns allways True
|
||||
//! results : Here, returns always True
|
||||
Standard_EXPORT virtual Standard_Boolean IsMultiple() const Standard_OVERRIDE;
|
||||
|
||||
//! Returns the Type permitted for Results, i.e. here Transient
|
||||
|
@@ -361,17 +361,17 @@ public:
|
||||
|
||||
//! Returns, as an iterator, the log of root transfer, i.e. the
|
||||
//! created objects and Binders bound to starting roots
|
||||
//! If withstart is given True, Starting Objets are also returned
|
||||
//! If withstart is given True, Starting Objects are also returned
|
||||
Standard_EXPORT Transfer_IteratorOfProcessForFinder RootResult (const Standard_Boolean withstart = Standard_False) const;
|
||||
|
||||
//! Returns, as an Iterator, the entire log of transfer (list of
|
||||
//! created objects and Binders which can bring errors)
|
||||
//! If withstart is given True, Starting Objets are also returned
|
||||
//! If withstart is given True, Starting Objects are also returned
|
||||
Standard_EXPORT Transfer_IteratorOfProcessForFinder CompleteResult (const Standard_Boolean withstart = Standard_False) const;
|
||||
|
||||
//! Returns Binders which are neither "Done" nor "Initial",
|
||||
//! that is Error,Loop or Run (abnormal states at end of Transfer)
|
||||
//! Starting Objects are given in correspondance in the iterator
|
||||
//! Starting Objects are given in correspondence in the iterator
|
||||
Standard_EXPORT Transfer_IteratorOfProcessForFinder AbnormalResult() const;
|
||||
|
||||
//! Returns a CheckList as a list of Check : each one is for a
|
||||
@@ -433,7 +433,7 @@ private:
|
||||
//! without ErrorHandle. It invokes the Actor to work (set by
|
||||
//! SetActor), and tries its Nexts if no result is produced,
|
||||
//! until a Non Null Binder is produced.
|
||||
//! But keep in mind that a Null Binder can allways be returned
|
||||
//! But keep in mind that a Null Binder can always be returned
|
||||
//! if a Starting Entity has not been recognized at all.
|
||||
Standard_EXPORT Handle(Transfer_Binder) TransferProduct (const Handle(Transfer_Finder)& start,
|
||||
const Message_ProgressRange& theProgress = Message_ProgressRange());
|
||||
|
@@ -348,17 +348,17 @@ public:
|
||||
|
||||
//! Returns, as an iterator, the log of root transfer, i.e. the
|
||||
//! created objects and Binders bound to starting roots
|
||||
//! If withstart is given True, Starting Objets are also returned
|
||||
//! If withstart is given True, Starting Objects are also returned
|
||||
Standard_EXPORT Transfer_IteratorOfProcessForTransient RootResult (const Standard_Boolean withstart = Standard_False) const;
|
||||
|
||||
//! Returns, as an Iterator, the entire log of transfer (list of
|
||||
//! created objects and Binders which can bring errors)
|
||||
//! If withstart is given True, Starting Objets are also returned
|
||||
//! If withstart is given True, Starting Objects are also returned
|
||||
Standard_EXPORT Transfer_IteratorOfProcessForTransient CompleteResult (const Standard_Boolean withstart = Standard_False) const;
|
||||
|
||||
//! Returns Binders which are neither "Done" nor "Initial",
|
||||
//! that is Error,Loop or Run (abnormal states at end of Transfer)
|
||||
//! Starting Objects are given in correspondance in the iterator
|
||||
//! Starting Objects are given in correspondence in the iterator
|
||||
Standard_EXPORT Transfer_IteratorOfProcessForTransient AbnormalResult() const;
|
||||
|
||||
//! Returns a CheckList as a list of Check : each one is for a
|
||||
@@ -419,7 +419,7 @@ private:
|
||||
//! without ErrorHandle. It invokes the Actor to work (set by
|
||||
//! SetActor), and tries its Nexts if no result is produced,
|
||||
//! until a Non Null Binder is produced.
|
||||
//! But keep in mind that a Null Binder can allways be returned
|
||||
//! But keep in mind that a Null Binder can always be returned
|
||||
//! if a Starting Entity has not been recognized at all.
|
||||
Standard_EXPORT Handle(Transfer_Binder) TransferProduct (const Handle(Standard_Transient)& start,
|
||||
const Message_ProgressRange& theProgress = Message_ProgressRange());
|
||||
|
@@ -43,7 +43,7 @@ public:
|
||||
|
||||
//! Creates an empty SimpleBinderOfTransient
|
||||
//! Returns True if a starting object is bound with SEVERAL
|
||||
//! results : Here, returns allways False
|
||||
//! results : Here, returns always False
|
||||
//! See Binder itself
|
||||
Standard_EXPORT Transfer_SimpleBinderOfTransient();
|
||||
|
||||
|
@@ -39,7 +39,7 @@ class Interface_Check;
|
||||
|
||||
//! Defines an Iterator on the result of a Transfer
|
||||
//! Available for Normal Results or not (Erroneous Transfer)
|
||||
//! It gives several kinds of Informations, and allows to consider
|
||||
//! It gives several kinds of Information, and allows to consider
|
||||
//! various criteria (criteria are cumulative)
|
||||
class Transfer_TransferIterator
|
||||
{
|
||||
@@ -93,7 +93,7 @@ public:
|
||||
|
||||
//! Returns True if current Item brings a Result, Transient
|
||||
//! (Handle) or not or Multiple. That is to say, if it corresponds
|
||||
//! to a normally acheived Transfer, Transient Result is read by
|
||||
//! to a normally achieved Transfer, Transient Result is read by
|
||||
//! specific TransientResult below.
|
||||
//! Other kind of Result must be read specifically from its Binder
|
||||
Standard_EXPORT Standard_Boolean HasResult() const;
|
||||
@@ -102,7 +102,7 @@ public:
|
||||
Standard_EXPORT Standard_Boolean HasUniqueResult() const;
|
||||
|
||||
//! Returns the Type of the Result of the current Item, if Unique.
|
||||
//! If No Unique Result (Error Transfert or Multiple Result),
|
||||
//! If No Unique Result (Error Transfer or Multiple Result),
|
||||
//! returns a Null Handle
|
||||
//! The Type is : the Dynamic Type for a Transient Result,
|
||||
//! the Type defined by the Binder Class else
|
||||
|
@@ -37,7 +37,7 @@ DEFINE_STANDARD_HANDLE(Transfer_TransientListBinder, Transfer_Binder)
|
||||
//! This binder binds several (a list of) Transients with a starting
|
||||
//! entity, when this entity itself corresponds to a simple list
|
||||
//! of Transients. Each part is not seen as a sub-result of an
|
||||
//! independant componant, but as an item of a built-in list
|
||||
//! independent component, but as an item of a built-in list
|
||||
class Transfer_TransientListBinder : public Transfer_Binder
|
||||
{
|
||||
|
||||
|
@@ -48,7 +48,7 @@ public:
|
||||
//! Returns the contained value
|
||||
Standard_EXPORT const Handle(Standard_Transient)& Value() const;
|
||||
|
||||
//! Specific testof equallity : defined as False if <other> has
|
||||
//! Specific testof equality : defined as False if <other> has
|
||||
//! not the same true Type, else contents are compared (by
|
||||
//! C++ operator ==)
|
||||
Standard_EXPORT Standard_Boolean Equates (const Handle(Transfer_Finder)& other) const Standard_OVERRIDE;
|
||||
|
@@ -41,7 +41,7 @@ DEFINE_STANDARD_HANDLE(Transfer_TransientProcess, Transfer_ProcessForTransient)
|
||||
//! TransientProcess is intended to work from an InterfaceModel
|
||||
//! to a set of application objects.
|
||||
//!
|
||||
//! Hence, some informations about starting entities can be gotten
|
||||
//! Hence, some information about starting entities can be gotten
|
||||
//! from the model : for Trace, CheckList, Integrity Status
|
||||
class Transfer_TransientProcess : public Transfer_ProcessForTransient
|
||||
{
|
||||
@@ -53,7 +53,7 @@ public:
|
||||
Standard_EXPORT Transfer_TransientProcess(const Standard_Integer nb = 10000);
|
||||
|
||||
//! Sets an InterfaceModel, used by StartTrace, CheckList, queries
|
||||
//! on Integrity, to give informations significant for each norm.
|
||||
//! on Integrity, to give information significant for each norm.
|
||||
Standard_EXPORT void SetModel (const Handle(Interface_InterfaceModel)& model);
|
||||
|
||||
//! Returns the Model used for StartTrace
|
||||
|
Reference in New Issue
Block a user