]> OCCT Git - occt.git/commitdiff
Documentation - Fix whitespace and typos (#797)
authorluzpaz <luzpaz@users.noreply.github.com>
Tue, 4 Nov 2025 15:06:11 +0000 (10:06 -0500)
committerGitHub <noreply@github.com>
Tue, 4 Nov 2025 15:06:11 +0000 (15:06 +0000)
- Normalized spacing in multi-line comments
- Fixed typos in documentation (e.g., "toipological" → "topological", "exist" → "exists")
- Improved comment formatting and alignment

58 files changed:
samples/qt/Interface/src/Application.cxx
src/ApplicationFramework/TKBinL/BinLDrivers/BinLDrivers_DocumentStorageDriver.hxx
src/ApplicationFramework/TKCAF/AppStd/AppStd_Application.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Axis.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_ConstraintEnum.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Geometry.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_PatternStd.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Placement.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Plane.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Point.hxx
src/ApplicationFramework/TKCAF/TDataXtd/TDataXtd_Shape.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_Builder.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_CopyShape.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_Iterator.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_NamedShape.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_Naming.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_NewShapeIterator.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_OldShapeIterator.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_SameShapeIterator.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_Scope.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_Selector.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_ShapesSet.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_Tool.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_TranslateTool.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_Translator.hxx
src/ApplicationFramework/TKCAF/TNaming/TNaming_UsedShapes.hxx
src/ApplicationFramework/TKCDF/CDF/CDF_Application.hxx
src/ApplicationFramework/TKCDF/CDF/CDF_MetaDataDriver.hxx
src/ApplicationFramework/TKCDF/CDF/CDF_Store.hxx
src/ApplicationFramework/TKCDF/CDM/CDM_Application.hxx
src/ApplicationFramework/TKCDF/CDM/CDM_Document.hxx
src/ApplicationFramework/TKCDF/CDM/CDM_MetaData.hxx
src/ApplicationFramework/TKCDF/CDM/CDM_Reference.hxx
src/ApplicationFramework/TKCDF/PCDM/PCDM_ReadWriter.hxx
src/ApplicationFramework/TKCDF/PCDM/PCDM_StorageDriver.hxx
src/ApplicationFramework/TKLCAF/AppStdL/AppStdL_Application.hxx
src/ApplicationFramework/TKLCAF/TDF/TDF_Label.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_AsciiString.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_BooleanArray.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ByteArray.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ChildNodeIterator.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Comment.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Current.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Directory.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Expression.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ExtStringArray.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_GenericExtString.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntPackedMap.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Integer.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_IntegerArray.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Name.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_NoteBook.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_Real.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_RealArray.hxx
src/ApplicationFramework/TKLCAF/TDataStd/TDataStd_ReferenceArray.hxx
src/ApplicationFramework/TKLCAF/TDocStd/TDocStd_Application.hxx

index c99739cebda2db44885b96aabea827978a1e5a90..2048ef73db3a92d05f6584bbde469e6c86402ba7 100755 (executable)
@@ -26,10 +26,10 @@ ApplicationWindow::~ApplicationWindow()
 void ApplicationWindow::createTranslatePopups()
 {
     if ( !myImportPopup )
-        myImportPopup = new QMenu( QObject::tr( "MNU_FILE_IMPORT" ), this );
+        myImportPopup = new QMenu( QObject::tr("MNU_FILE_IMPORT"), this );
 
     if ( !myExportPopup )
-           myExportPopup = new QMenu( QObject::tr( "MNU_FILE_EXPORT" ), this );
+           myExportPopup = new QMenu( QObject::tr("MNU_FILE_EXPORT"), this );
 
        QAction* a;
        a = new QAction( QObject::tr("MNU_IMPORT_BREP"), this );
index e614eeedb0d0ed8e1199b231cb1f8d1d329abd34..00bbea948d2a6dae1e65c2fd1a94bc0ec643cd6e 100644 (file)
@@ -84,7 +84,7 @@ protected:
                                             const Handle(CDM_Document)& /*theDoc*/,
                                             Standard_OStream& /*theOS*/);
 
-  //! defines the procedure of writing a shape  section to file
+  //! defines the procedure of writing a shape section to file
   Standard_EXPORT virtual void WriteShapeSection(
     BinLDrivers_DocumentSection& theDocSection,
     Standard_OStream&            theOS,
index c84915364f8f9f259de746f065901fe817e980fb..ba40ed737be3abff33f3ebf727fa7f8cc6195e6b 100644 (file)
@@ -27,8 +27,7 @@ DEFINE_STANDARD_HANDLE(AppStd_Application, TDocStd_Application)
 class AppStd_Application : public TDocStd_Application
 {
 public:
-  //! returns   the file  name  which  contains  application
-  //! resources
+  //! returns the file name which contains application resources
   Standard_EXPORT Standard_CString ResourcesName() Standard_OVERRIDE;
 
   //! Dumps the content of me into the stream
index f86d9e8a64a225ec4d5ea5c6b55680fc0ec5ad0b..0066041456b47b6fa12d4f42e4923ca55afea2e3 100644 (file)
@@ -25,8 +25,8 @@
 #include <TDataXtd_GeometryEnum.hxx>
 #include <TDataXtd_ConstraintEnum.hxx>
 
-//! This  package  defines  extension of standard attributes for
-//! modelling  (mainly for work with geometry).
+//! This package defines extension of standard attributes for
+//! modelling (mainly for work with geometry).
 class TDataXtd
 {
 public:
index 9e93b9bb3c4f25cf3f3df6f751e0a90ddf850d8b..9fecc03cf2619fa5501fa4b93a37c01bc48a7c5b 100644 (file)
@@ -25,7 +25,7 @@ DEFINE_STANDARD_HANDLE(TDataXtd_Axis, TDataStd_GenericEmpty)
 
 //! The basis to define an axis attribute.
 //!
-//! Warning: Use TDataXtd_Geometry  attribute  to retrieve  the
+//! Warning: Use TDataXtd_Geometry attribute to retrieve the
 //! gp_Lin of the Axis attribute
 class TDataXtd_Axis : public TDataStd_GenericEmpty
 {
@@ -36,16 +36,17 @@ public:
   //! Returns the GUID for an axis.
   Standard_EXPORT static const Standard_GUID& GetID();
 
-  //! Finds or creates an axis attribute defined by the  label.
+  //! Finds or creates an axis attribute defined by the label.
   //! In the case of a creation of an axis, a compatible
   //! named shape should already be associated with label.
   //! Exceptions
-  //! Standard_NullObject if no compatible named
-  //! shape is associated with the label.
+  //! Standard_NullObject if no compatible named shape is
+  //! associated with the label.
   Standard_EXPORT static Handle(TDataXtd_Axis) Set(const TDF_Label& label);
 
-  //! Find,  or create,  an Axis  attribute  and set <P>  as
+  //! Find, or create, an Axis attribute and set <P> as
   //! generated in the associated NamedShape.
+
   //! Axis methods
   //! ============
   Standard_EXPORT static Handle(TDataXtd_Axis) Set(const TDF_Label& label, const gp_Lin& L);
index e83608f746a7721bb95cd2a8f209bf9cd33ccceb..615f7add9c4fd5ce8e514c3143831fb42212d555 100644 (file)
@@ -17,7 +17,7 @@
 #define _TDataXtd_ConstraintEnum_HeaderFile
 
 //! The terms of this enumeration define the types
-//! of  available constraint.
+//! of available constraint.
 //! ==================
 enum TDataXtd_ConstraintEnum
 {
index 1a6a1d5005112f6bbb883e90022fe0d3d1bfe97c..43940865034801b369d51e419a691bf5dcd348c4 100644 (file)
@@ -41,8 +41,8 @@ DEFINE_STANDARD_HANDLE(TDataXtd_Geometry, TDF_Attribute)
 //! The specific geometric construction of the
 //! attribute is defined by an element of the
 //! enumeration TDataXtd_GeometryEnum.
-//! This attribute may  also be used to qualify  underlying
-//! geometry  of   the  associated NamedShape.     for
+//! This attribute may also be used to qualify underlying
+//! geometry of the associated NamedShape. for
 //! Constructuion element by example.
 class TDataXtd_Geometry : public TDF_Attribute
 {
@@ -50,7 +50,7 @@ class TDataXtd_Geometry : public TDF_Attribute
 public:
   //! API class methods
   //! =================
-  //! Finds, or  creates, a Geometry attribute  defined by the label label.
+  //! Finds, or creates, a Geometry attribute defined by the label label.
   //! The default type of geometry is the value
   //! ANY_GEOM of the enumeration TDataXtd_GeometryEnum.
   //! To specify another value of this enumeration, use
index d5f0a39562414451cadf9388e41796fd9a42b0de..70ee0c0e6cceeaf6ebc14ece682ec92e43376475 100644 (file)
@@ -44,7 +44,7 @@ class TDataXtd_PatternStd : public TDataXtd_Pattern
 public:
   Standard_EXPORT static const Standard_GUID& GetPatternID();
 
-  //! Find, or  create,  a PatternStd  attribute
+  //! Find, or create, a PatternStd attribute
   Standard_EXPORT static Handle(TDataXtd_PatternStd) Set(const TDF_Label& label);
 
   Standard_EXPORT TDataXtd_PatternStd();
index 549c53310af5e25f49d031e39f982f4026c34f91..2b71cc5663afd0693cab3ca97f2e8186e5d7ec40 100644 (file)
@@ -30,7 +30,7 @@ public:
   //! =============
   Standard_EXPORT static const Standard_GUID& GetID();
 
-  //! Find, or    create,   an Placement  attribute.     the
+  //! Find, or create, a Placement attribute.
   //! Placement attribute is returned.
   //! Placement methods
   //! =================
index 77051ddb936280530bc221dce951675e981f32be..2b067f6993ab8f60a5701eff4de34b17488202dc 100644 (file)
@@ -24,7 +24,7 @@ class TDataXtd_Plane;
 DEFINE_STANDARD_HANDLE(TDataXtd_Plane, TDataStd_GenericEmpty)
 
 //! The basis to define a plane attribute.
-//! Warning:  Use TDataXtd_Geometry  attribute  to retrieve  the
+//! Warning:  Use TDataXtd_Geometry attribute to retrieve the
 //! gp_Pln of the Plane attribute
 class TDataXtd_Plane : public TDataStd_GenericEmpty
 {
@@ -43,7 +43,7 @@ public:
   //! planar face should already be associated with label.
   Standard_EXPORT static Handle(TDataXtd_Plane) Set(const TDF_Label& label);
 
-  //! Finds,  or creates,  a Plane  attribute  and sets <P>  as
+  //! Finds, or creates, a Plane attribute and sets <P> as
   //! generated the associated NamedShape.
   //! Plane methods
   //! =============
index 25e300b47dd952edaf8a620e8fff9dbad0ece851..786a002b2432ee2ad4813170ca29d5c723ac26c6 100644 (file)
@@ -27,7 +27,7 @@ DEFINE_STANDARD_HANDLE(TDataXtd_Point, TDataStd_GenericEmpty)
 //! The topological attribute must contain a vertex.
 //! You use this class to create reference points in a design.
 //!
-//! Warning:  Use TDataXtd_Geometry  attribute  to retrieve the
+//! Warning: Use TDataXtd_Geometry attribute to retrieve the
 //! gp_Pnt of the Point attribute
 class TDataXtd_Point : public TDataStd_GenericEmpty
 {
index f2647d96ea68ebf1d20d7ceba2aa3198409dff4b..94c830b389259029d5fe975d50be117f9e68802a 100644 (file)
@@ -32,25 +32,25 @@ public:
   //! class methods
   //! =============
   //! try to retrieve a Shape attribute at <current> label
-  //! or in  fathers  label of  <current>. Returns True  if
+  //! or in fathers label of <current>. Returns True if
   //! found and set <S>.
   Standard_EXPORT static Standard_Boolean Find(const TDF_Label& current, Handle(TDataXtd_Shape)& S);
 
-  //! Find, or create, a Shape attribute.  the Shape attribute
+  //! Find, or create, a Shape attribute. the Shape attribute
   //! is returned. Raises if <label> has attribute.
   Standard_EXPORT static Handle(TDataXtd_Shape) New(const TDF_Label& label);
 
-  //! Create or update associated NamedShape attribute.  the
+  //! Create or update associated NamedShape attribute. the
   //! Shape attribute is returned.
   Standard_EXPORT static Handle(TDataXtd_Shape) Set(const TDF_Label&    label,
                                                     const TopoDS_Shape& shape);
 
-  //! the Shape from  associated NamedShape attribute
+  //! the Shape from associated NamedShape attribute
   //! is returned.
   Standard_EXPORT static TopoDS_Shape Get(const TDF_Label& label);
 
   //! Shape methods
-  //! ============
+  //! =============
   Standard_EXPORT static const Standard_GUID& GetID();
 
   Standard_EXPORT TDataXtd_Shape();
index 8fc70f4a9f58a6a18c31b4a9917bba6c66cd809e..5116a90cf25b8bd11f31c77e3a1f1924c1142829 100644 (file)
@@ -99,36 +99,36 @@ class TNaming
 public:
   DEFINE_STANDARD_ALLOC
 
-  //! Subtituter les  shapes  sur les structures de   source
+  //! Subtituter les shapes sur les structures de source
   //! vers cible
   Standard_EXPORT static void Substitute(const TDF_Label&              labelsource,
                                          const TDF_Label&              labelcible,
                                          TopTools_DataMapOfShapeShape& mapOldNew);
 
-  //! Mise a jour des shapes du label  et de ses fils en
-  //! tenant compte des  substitutions decrite par
+  //! Mise a jour des shapes du label et de ses fils en
+  //! tenant compte des substitutions decrite par
   //! mapOldNew.
   //!
-  //! Warning: le  remplacement du shape est  fait    dans tous
-  //! les    attributs  qui  le contiennent meme si ceux
+  //! Warning: le remplacement du shape est fait dans tous
+  //! les attributs qui le contiennent meme si ceux
   //! ci ne sont pas associees a des sous-labels de <Label>.
   Standard_EXPORT static void Update(const TDF_Label&              label,
                                      TopTools_DataMapOfShapeShape& mapOldNew);
 
   //! Application de la Location sur les shapes du label
-  //! et  de   ses   sous   labels.
+  //! et de ses sous labels.
   Standard_EXPORT static void Displace(const TDF_Label&       label,
                                        const TopLoc_Location& aLocation,
                                        const Standard_Boolean WithOld = Standard_True);
 
-  //! Remplace  les  shapes du label et  des sous-labels
+  //! Remplace les shapes du label et des sous-labels
   //! par des copies.
   Standard_EXPORT static void ChangeShapes(const TDF_Label& label, TopTools_DataMapOfShapeShape& M);
 
   //! Application de la transformation sur les shapes du
   //! label et de ses sous labels.
-  //! Warning: le  remplacement du shape est  fait    dans tous
-  //! les    attributs  qui  le contiennent meme si ceux
+  //! Warning: le remplacement du shape est fait dans tous
+  //! les attributs qui le contiennent meme si ceux
   //! ci ne sont pas associees a des sous-labels de <Label>.
   Standard_EXPORT static void Transform(const TDF_Label& label, const gp_Trsf& aTransformation);
 
@@ -176,11 +176,11 @@ public:
                                                      TopoDS_Shell&       theShell);
 
   //! Appends to <anIDList> the list of the attributes
-  //! IDs of this package. CAUTION: <anIDList> is NOT
-  //! cleared before use.
+  //! IDs of this package.
+  //! CAUTION: <anIDList> is NOT cleared before use.
   Standard_EXPORT static void IDList(TDF_IDList& anIDList);
 
-  //! Prints the  evolution  <EVOL> as  a String on  the
+  //! Prints the evolution <EVOL> as a String on the
   //! Stream <S> and returns <S>.
   Standard_EXPORT static Standard_OStream& Print(const TNaming_Evolution EVOL, Standard_OStream& S);
 
@@ -188,7 +188,7 @@ public:
   //! the Stream <S> and returns <S>.
   Standard_EXPORT static Standard_OStream& Print(const TNaming_NameType NAME, Standard_OStream& S);
 
-  //! Prints the content of UsedShapes private  attribute as a String Table on
+  //! Prints the content of UsedShapes private attribute as a String Table on
   //! the Stream <S> and returns <S>.
   Standard_EXPORT static Standard_OStream& Print(const TDF_Label& ACCESS, Standard_OStream& S);
 };
index 4699151a66ec0d0f509b109876b2b83d51b42868..6d63e1a29b5c52cb1da8c38d3c1868a556c24fc9 100644 (file)
@@ -39,8 +39,8 @@ class TNaming_Builder
 public:
   DEFINE_STANDARD_ALLOC
 
-  //! Create an   Builder.
-  //! Warning:  Before Addition copies the current Value, and clear
+  //! Create a Builder.
+  //! Warning: Before Addition copies the current Value, and clear
   Standard_EXPORT TNaming_Builder(const TDF_Label& aLabel);
 
   //! Records the shape newShape which was
@@ -65,8 +65,8 @@ public:
   //! or merged in a Boolean operation.
   Standard_EXPORT void Modify(const TopoDS_Shape& oldShape, const TopoDS_Shape& newShape);
 
-  //! Add a  Shape to the current label ,  This Shape is
-  //! unmodified.  Used for example  to define a set
+  //! Add a Shape to the current label, This Shape is
+  //! unmodified. Used for example to define a set
   //! of shapes under a label.
   Standard_EXPORT void Select(const TopoDS_Shape& aShape, const TopoDS_Shape& inShape);
 
index 354259508949f86cf38442e7be7b241910f4a3a5..1d2e179636adf3227b5d0b3876c1b4995fa82e31 100644 (file)
@@ -30,18 +30,18 @@ class TNaming_CopyShape
 public:
   DEFINE_STANDARD_ALLOC
 
-  //! Makes  copy  a  set  of  shape(s),  using the  aMap
+  //! Makes copy a set of shape(s), using the aMap
   Standard_EXPORT static void CopyTool(const TopoDS_Shape&                         aShape,
                                        TColStd_IndexedDataMapOfTransientTransient& aMap,
                                        TopoDS_Shape&                               aResult);
 
-  //! Translates  a  Transient  shape(s)  to  Transient
+  //! Translates a Transient shape(s) to Transient
   Standard_EXPORT static void Translate(const TopoDS_Shape&                         aShape,
                                         TColStd_IndexedDataMapOfTransientTransient& aMap,
                                         TopoDS_Shape&                               aResult,
                                         const Handle(TNaming_TranslateTool)&        TrTool);
 
-  //! Translates a Topological  Location  to an  other  Top.
+  //! Translates a Topological Location to an other Top.
   //! Location
   Standard_EXPORT static TopLoc_Location Translate(
     const TopLoc_Location&                      L,
index 0bccef9fd245793c8a6094f5e00ff083fe8e858f..07039723c3b8a6dd93a89a96226c34f9a1b1eb21 100644 (file)
@@ -46,15 +46,15 @@ class TNaming_Iterator
 public:
   DEFINE_STANDARD_ALLOC
 
-  //! Iterates on all  the history records in
+  //! Iterates on all the history records in
   //! <anAtt>.
   Standard_EXPORT TNaming_Iterator(const Handle(TNaming_NamedShape)& anAtt);
 
-  //! Iterates on all  the history records in
+  //! Iterates on all the history records in
   //! the current transaction
   Standard_EXPORT TNaming_Iterator(const TDF_Label& aLabel);
 
-  //! Iterates on all  the history records in
+  //! Iterates on all the history records in
   //! the transaction <aTrans>
   Standard_EXPORT TNaming_Iterator(const TDF_Label& aLabel, const Standard_Integer aTrans);
 
@@ -72,8 +72,8 @@ public:
   //! Returns the new shape in this iterator object.
   Standard_EXPORT const TopoDS_Shape& NewShape() const;
 
-  //! Returns true if the  new  shape is a modification  (split,
-  //! fuse,etc...) of the old shape.
+  //! Returns true if the new shape is a modification
+  //! (split, fuse, etc...) of the old shape.
   Standard_EXPORT Standard_Boolean IsModification() const;
 
   Standard_EXPORT TNaming_Evolution Evolution() const;
index b462557d2c4ab0f781f8510ee8d8b32110692015..8f15bf5b7451b3c414d40bbc2858f3f35fb1909c 100644 (file)
@@ -77,7 +77,7 @@ public:
   //! Returns the ID of the attribute.
   const Standard_GUID& ID() const Standard_OVERRIDE;
 
-  //! Copies  the attribute  contents into  a  new other
+  //! Copies the attribute contents into a new other
   //! attribute. It is used by Backup().
   Standard_EXPORT virtual Handle(TDF_Attribute) BackupCopy() const Standard_OVERRIDE;
 
index 31b4890633310c739e67580b3e63db6439214985..65b7d82bf36cb05f82e537bb1fca04ffb95b5cbb 100644 (file)
@@ -36,10 +36,10 @@ class TDF_IDFilter;
 class TNaming_Naming;
 DEFINE_STANDARD_HANDLE(TNaming_Naming, TDF_Attribute)
 
-//! This attribute  store the  topological  naming of any
-//! selected   shape,  when this  shape  is  not  already
+//! This attribute store the topological naming of any
+//! selected shape, when this shape is not already
 //! attached to a specific label. This class is also used
-//! to solve  it when  the argumentsof the  toipological
+//! to solve it when the arguments of the topological
 //! naming are modified.
 class TNaming_Naming : public TDF_Attribute
 {
@@ -51,15 +51,16 @@ public:
 
   Standard_EXPORT static Handle(TNaming_Naming) Insert(const TDF_Label& under);
 
-  //! Creates  a   Namimg  attribute  at  label <where>   to
-  //! identify  the   shape   <Selection>.    Geometry is
-  //! Standard_True  if   we  are  only  interested  by  the
-  //! underlying   geometry     (e.g.     setting   a
-  //! constraint). <Context> is  used to find neighbours  of
-  //! <S> when required by the naming.
-  //! If KeepOrientation is True the Selection orientation is taken
-  //! into  account. BNproblem == True points out that Context sub-shapes
-  //! in  DF have orientation differences with Context shape itself.
+  //! Creates a Naming attribute at label <where> to identify
+  //! the shape <Selection>. Geometry is Standard_True if we
+  //! are only interested by the underlying geometry (e.g.
+  //! setting a constraint).
+  //! <Context> is used to find neighbours of <S> when required
+  //! by the naming. If KeepOrientation is True the Selection
+  //! orientation is taken into account.
+  //! BNproblem == True points out that Context sub-shapes in
+  //! DF have orientation differences with Context shape itself.
+
   //! instance method
   //! ===============
   Standard_EXPORT static Handle(TNaming_NamedShape) Name(
@@ -81,8 +82,8 @@ public:
   //! regenerate only the Name associated to me
   Standard_EXPORT Standard_Boolean Regenerate(TDF_LabelMap& scope);
 
-  //! Regenerate recursively the  whole name with scope.  If
-  //! scope  is empty it  means that  all the labels  of the
+  //! Regenerate recursively the whole name with scope. If
+  //! scope is empty it means that all the labels of the
   //! framework are valid.
   Standard_EXPORT Standard_Boolean Solve(TDF_LabelMap& scope);
 
index cf71fff1c4a8be62eac84c5b5a56d3cbc9ea0661..f641c216b8d31652fba4bc77908a218423c4cfc8 100644 (file)
@@ -63,7 +63,7 @@ public:
   //! Warning! Can be a Null Shape if a descendant is deleted.
   Standard_EXPORT const TopoDS_Shape& Shape() const;
 
-  //! True if the new  shape is a modification  (split,
+  //! True if the new shape is a modification (split,
   //! fuse,etc...) of the old shape.
   Standard_EXPORT Standard_Boolean IsModification() const;
 
index 54b845c9c07a1d0b3338a3e9a1e04361bad42fa4..918100c28521decff1ffa28a56ed5d8211150889 100644 (file)
@@ -62,7 +62,7 @@ public:
 
   Standard_EXPORT const TopoDS_Shape& Shape() const;
 
-  //! True if the  new  shape is a modification  (split,
+  //! True if the new shape is a modification (split,
   //! fuse,etc...) of the old shape.
   Standard_EXPORT Standard_Boolean IsModification() const;
 
index f7bec680789ba50d0ab46602e28af3d5341477fc..6a80942b57ecc018357b299205706fdd6255d4cc 100644 (file)
@@ -29,7 +29,7 @@ class TopoDS_Shape;
 class TNaming_UsedShapes;
 class TDF_Label;
 
-//! To iterate on   all  the label which contained  a
+//! To iterate on all the label which contained a
 //! given shape.
 class TNaming_SameShapeIterator
 {
index 9bcd5a8893bcc621b0ef35322c29b1324f903cc5..2c6dce8111f8f073d693b4759c9f991ef62a0045 100644 (file)
@@ -65,7 +65,7 @@ public:
 
   Standard_EXPORT TDF_LabelMap& ChangeValid();
 
-  //! Returns  the current  value of  <NS> according to the
+  //! Returns the current value of <NS> according to the
   //! Valid Scope.
   Standard_EXPORT TopoDS_Shape CurrentShape(const Handle(TNaming_NamedShape)& NS) const;
 
index 4307a894d30b37302916889daf476bc66cd64bfc..1deb5d9a6e01683bd15a013e50ec643301932f80 100644 (file)
@@ -34,31 +34,31 @@ class TNaming_NamedShape;
 //! solve its identifications.
 //! This class is the user interface for topological
 //! naming resources.
-//! * The   <IsIdentified> method returns  (if exists)
-//! the NamedShape which  contains a given shape. The
-//! definition of  an  identified shape is :   a Shape
-//! handled by a NamedShape  (this shape  is the only
-//! one stored) , which  has the TNaming_PRImITIVE evolution
+//! * The <IsIdentified> method returns (if exists)
+//! the NamedShape which contains a given shape. The
+//! definition of an identified shape is: a Shape
+//! handled by a NamedShape (this shape is the only
+//! one stored), which has the TNaming_PRImITIVE evolution
 //!
-//! *  The   <Select> method  returns   ALWAYS a  new
-//! NamedShape at the given  label, which contains the
-//! argument  selected  shape.    When  calling  this
+//! * The <Select> method returns ALWAYS a new
+//! NamedShape at the given label, which contains the
+//! argument selected shape. When calling this
 //! method, the sub-hierarchy of <label> is first cleared,
-//! then a TNaming_NamedShape   is ALWAYS created  at
+//! then a TNaming_NamedShape is ALWAYS created  at
 //! this <label>, with the TNaming_SELECTED evolution.
 //! The <Naming attribute> is associated to the selected
-//! shape which store the arguments of the selection .
+//! shape which store the arguments of the selection.
 //! If the given selected shape was already identified
-//! (method IsIdentified)   , this   Naming attribute
-//! contains  the reference (Identity  code)  to the
+//! (method IsIdentified), this Naming attribute
+//! contains the reference (Identity code) to the
 //! argument shape.
 //!
-//! * The <Solve> method  update the current value of
+//! * The <Solve> method update the current value of
 //! the NamedShape, according to the <Naming> attribute.
-//! A boolean status  is    returned to say  if  the
-//! algorithm succeed   or not.  To read   the current
-//! value    of the selected    Named  Shape  use the
-//! TNaming_Tool::GetShape    method,    as  for  any
+//! A boolean status is returned to say if the
+//! algorithm succeed or not. To read the current
+//! value of the selected Named Shape use the
+//! TNaming_Tool::GetShape method, as for any
 //! NamedShape attribute.
 class TNaming_Selector
 {
index b6ada0f56a3f40276c16abb1f9d8fe2f361ebe75..ad943e065709f63f1dd25e96711ac7be65c46a1f 100644 (file)
@@ -41,7 +41,7 @@ public:
   //! Adds the Shape <S>
   Standard_Boolean Add(const TopoDS_Shape& S);
 
-  //! Returns True  if <S> is in <me>
+  //! Returns True if <S> is in <me>
   Standard_Boolean Contains(const TopoDS_Shape& S) const;
 
   //! Removes <S> in <me>.
index 4161f5f843ac8b15d4b4057e5d015b5e36082fe9..fe4361d2501be39ceb77feaad4909fdc41f11531 100644 (file)
@@ -136,8 +136,8 @@ public:
   Standard_EXPORT static Standard_Boolean HasLabel(const TDF_Label&    access,
                                                    const TopoDS_Shape& aShape);
 
-  //! Returns  the label  of   the first apparition  of
-  //! <aShape>.  Transdef  is a value of the transaction
+  //! Returns the label of the first apparition  of
+  //! <aShape>. Transdef is a value of the transaction
   //! of the first apparition of <aShape>.
   Standard_EXPORT static TDF_Label Label(const TDF_Label&    access,
                                          const TopoDS_Shape& aShape,
@@ -177,8 +177,8 @@ private:
   Standard_EXPORT static Standard_Integer ValidUntil(const TopoDS_Shape&               S,
                                                      const Handle(TNaming_UsedShapes)& US);
 
-  //! Returns  the label  of   the first apparition  of
-  //! <aShape>.  Transdef  is a value of the transaction
+  //! Returns the label of the first apparition of
+  //! <aShape>. Transdef  is a value of the transaction
   //! of the first apparition of <aShape>.
   Standard_EXPORT static TDF_Label Label(const Handle(TNaming_UsedShapes)& Shapes,
                                          const TopoDS_Shape&               aShape,
index 089a501027f2951731310090244347ae161e16af..29872bf981bb5420a3d7f0a59b610089000d236b 100644 (file)
@@ -29,8 +29,8 @@ DEFINE_STANDARD_HANDLE(TNaming_TranslateTool, Standard_Transient)
 
 //! tool to copy underlying TShape of a Shape.
 //! The TranslateTool class is provided to support the
-//! translation of topological data structures  Transient
-//! to  Transient.
+//! translation of topological data structures Transient
+//! to Transient.
 class TNaming_TranslateTool : public Standard_Transient
 {
 
index 26797824ba4aa10c6940394976af5ff4f6b2958a..1447a35ef56ffd1be2ae64e3089dfd9e3a555a62 100644 (file)
@@ -24,7 +24,7 @@
 #include <TopTools_DataMapOfShapeShape.hxx>
 class TopoDS_Shape;
 
-//! only  for  Shape  Copy  test - to move in DNaming
+//! only for Shape Copy test - to move in DNaming
 class TNaming_Translator
 {
 public:
@@ -38,10 +38,10 @@ public:
 
   Standard_EXPORT Standard_Boolean IsDone() const;
 
-  //! returns copied  shape
+  //! returns copied shape
   Standard_EXPORT const TopoDS_Shape Copied(const TopoDS_Shape& aShape) const;
 
-  //! returns  DataMap  of  results;  (shape <-> copied  shape)
+  //! returns DataMap of results; (shape <-> copied shape)
   Standard_EXPORT const TopTools_DataMapOfShapeShape& Copied() const;
 
   Standard_EXPORT void DumpMap(const Standard_Boolean isWrite = Standard_False) const;
index 84bb2f59ce0a81ec3357bd5ae5947647c08a478b..9c46241ed44b6973b7f1eb6ac9e7c94f2913cd45 100644 (file)
@@ -54,7 +54,7 @@ public:
   //! Returns the ID: 2a96b614-ec8b-11d0-bee7-080009dc3333.
   Standard_EXPORT static const Standard_GUID& GetID();
 
-  //! Copies  the attribute  contents into  a  new other
+  //! Copies the attribute contents into a new other
   //! attribute. It is used by Backup().
   Standard_EXPORT virtual Handle(TDF_Attribute) BackupCopy() const Standard_OVERRIDE;
 
index 6f0714c730626eaddf844f159b8a818da97a3866..965a35f821b18ae9ff7a06b93f2826bbd5ea1de1 100644 (file)
@@ -92,7 +92,7 @@ public:
   //!
   //! Handle(CDM_Document) theDocument=myApplication->Retrieve("|user|cascade","box");
   //!
-  //! Since  the version is not specified in  this syntax, the  latest will be used.
+  //! Since the version is not specified in this syntax, the latest will be used.
   //! A link is kept with the database through an instance of CDM_MetaData
   Standard_EXPORT Handle(CDM_Document) Retrieve(
     const TCollection_ExtendedString& aFolder,
@@ -101,15 +101,15 @@ public:
     const Handle(PCDM_ReaderFilter)&  theFilter               = Handle(PCDM_ReaderFilter)(),
     const Message_ProgressRange&      theRange                = Message_ProgressRange());
 
-  //! This method retrieves  a  document from the database.
-  //! If the  Document references other documents which have
-  //! been  updated, the  latest version of  these documents
-  //! will    be   used  if   {UseStorageConfiguration}  is
-  //! Standard_True.  --  If the DBMS is  only  based on the
-  //! OS, this syntax  should not be used.
+  //! This method retrieves a document from the database.
+  //! If the Document references other documents which have
+  //! been updated, the latest version of these documents
+  //! will be used if {UseStorageConfiguration} is
+  //! Standard_True. If the DBMS is only based on the OS,
+  //! this syntax should not be used.
   //!
   //! If the DBMS is EUCLID/Design Manager, {aFolder}, {aName}
-  //! and  {aVersion} have the form they have in
+  //! and {aVersion} have the form they have in
   //! EUCLID/Design Manager. For example:
   //!
   //! Handle(CDM_Document) theDocument=myApplication->Retrieve("|user|cascade","box","2");
@@ -132,7 +132,7 @@ public:
                                                 const TCollection_ExtendedString& theVersion,
                                                 const bool                        theAppendMode);
 
-  //! Checks  status  after  Retrieve
+  //! Checks status after Retrieve
   PCDM_ReaderStatus GetRetrieveStatus() const { return myRetrievableStatus; }
 
   //! Reads theDocument from standard SEEKABLE stream theIStream,
@@ -173,9 +173,9 @@ public:
   Standard_EXPORT virtual Handle(PCDM_StorageDriver) WriterFromFormat(
     const TCollection_ExtendedString& aFormat);
 
-  //! try to  retrieve a Format  directly in the  file or in
-  //! application   resource  by using   extension. returns
-  //! True if found;
+  //! try to retrieve a Format directly in the file or in
+  //! application resource by using extension.
+  //! returns True if found
   Standard_EXPORT Standard_Boolean Format(const TCollection_ExtendedString& aFileName,
                                           TCollection_ExtendedString&       theFormat);
 
@@ -192,7 +192,7 @@ public:
   Handle(CDF_Directory)      myDirectory;
 
 private:
-  //! Informs the  application that aDocument has  been
+  //! Informs the application that aDocument has been
   //! activated. A document is activated when it is created or
   //! retrieved.
   //! aTypeOfActivation will be:
index 7ec6fbc25cd53e6b39cd9f25f8bee28ba8626dab..e292ad7b8925a9e88496a4e22dc32d49e8314bb0 100644 (file)
@@ -39,7 +39,7 @@ public:
   //! By default, returns Standard_False.
   Standard_EXPORT virtual Standard_Boolean HasVersionCapability();
 
-  //! Creates a "Depends On"  relation between two Datas.
+  //! Creates a "Depends On" relation between two Datas.
   //! By default does nothing
   Standard_EXPORT virtual void CreateDependsOn(const Handle(CDM_MetaData)& aFirstData,
                                                const Handle(CDM_MetaData)& aSecondData);
@@ -56,9 +56,9 @@ public:
   Standard_EXPORT virtual TCollection_ExtendedString BuildFileName(
     const Handle(CDM_Document)& aDocument) = 0;
 
-  //! this method is useful if the name of an object --
-  //! depends on the metadatadriver. For  example a Driver
-  //! -- based  on the operating  system can choose to  add
+  //! this method is useful if the name of an object
+  //! depends on the metadatadriver. For example a Driver
+  //! based on the operating system can choose to add
   //! the extension of file to create to the object.
   Standard_EXPORT virtual TCollection_ExtendedString SetName(
     const Handle(CDM_Document)&       aDocument,
@@ -81,7 +81,7 @@ public:
   //! the version has to be set in the returned MetaData.
   //! aVersion may be NULL
   //! MetaData is called by GetMetaData
-  //! If the version is  set to NULL, MetaData should return
+  //! If the version is set to NULL, MetaData should return
   //! the last version of the metadata
   Standard_EXPORT virtual Handle(CDM_MetaData) MetaData(
     const TCollection_ExtendedString& aFolder,
@@ -93,7 +93,7 @@ public:
   //! corresponding to the path. If the MetaDataDriver has version management capabilities
   //! the version has to be set in the returned MetaData.
   //! MetaData is called by GetMetaData
-  //! If the version is not included in the path , MetaData should return
+  //! If the version is not included in the path, MetaData should return
   //! the last version of the metadata
   //! is deferred;
   Standard_EXPORT virtual Handle(CDM_MetaData) LastVersion(const Handle(CDM_MetaData)& aMetaData);
index e4585d624647aae9c5536450823e709974457010..8b32b5bba9caf159fca07d0e2a4a11449440e549 100644 (file)
@@ -36,7 +36,7 @@ class CDF_Store
 public:
   DEFINE_STANDARD_ALLOC
 
-  //! creates a store list  from the document of the current selection.
+  //! creates a store list from the document of the current selection.
   Standard_EXPORT CDF_Store(const Handle(CDM_Document)& aDocument);
 
   //! returns the folder in which the current document will be stored.
@@ -62,8 +62,8 @@ public:
   //! of the current selection.
   Standard_EXPORT Standard_Boolean IsMainDocument() const;
 
-  //! defines the   folder in which  the document  should be
-  //! stored.  returns  Standard_True if  the Folder exists,
+  //! defines the folder in which the document should be
+  //! stored. returns Standard_True if the Folder exists,
   //! Standard_False otherwise.
   Standard_EXPORT Standard_Boolean SetFolder(const TCollection_ExtendedString& aFolder);
 
@@ -85,7 +85,7 @@ public:
   //! returns the complete path of the created meta-data.
   Standard_EXPORT Standard_ExtString Path() const;
 
-  //! returns the path of  the previous store is the object
+  //! returns the path of the previous store is the object
   //! is already stored, otherwise an empty string;
   Standard_EXPORT Handle(TCollection_HExtendedString) MetaDataPath() const;
 
@@ -94,9 +94,9 @@ public:
 
   Standard_EXPORT void SetCurrent(const Standard_ExtString aPresentation);
 
-  //! the two following methods can
-  //! be used just after Realize  or Import --  method to know if
-  //! thes methods worked correctly, and if not why.
+  //! the two following methods can be used just after
+  //! Realize or Import -- method to know if
+  //! these methods worked correctly, and if not why.
   Standard_EXPORT void SetMain();
 
   Standard_EXPORT PCDM_StoreStatus StoreStatus() const;
@@ -106,8 +106,8 @@ public:
   //! defines the name under which the document should be stored.
   Standard_EXPORT CDF_StoreSetNameStatus SetName(const TCollection_ExtendedString& aName);
 
-  //! defines the   folder in which  the document  should be
-  //! stored.  returns  Standard_True if  the Folder exists,
+  //! defines the folder in which the document should be
+  //! stored. returns Standard_True if the Folder exists,
   //! Standard_False otherwise.
   Standard_EXPORT Standard_Boolean SetFolder(const Standard_ExtString aFolder);
 
index dbabb42b8843c96223079490942513c547291aad..d94685ff42bd402ac844ba40d65d216390fdf48e 100644 (file)
@@ -37,8 +37,8 @@ class CDM_Application : public Standard_Transient
 {
 
 public:
-  //! The manager returned by  this virtual  method will be
-  //! used to search for Format.Retrieval  resource items.
+  //! The manager returned by this virtual method will be
+  //! used to search for Format.Retrieval resource items.
   Standard_EXPORT virtual Handle(Resource_Manager) Resources() = 0;
 
   //! Returns default messenger;
index cebdb6d3317fd84e62687ef7c4959e0d7d9e03f1..17a5221f2aff4ed1022093bf82335484515774a2 100644 (file)
@@ -40,18 +40,18 @@ DEFINE_STANDARD_HANDLE(CDM_Document, Standard_Transient)
 //! - they can have references to other documents.
 //! - the modifications of a document are propagated to the referencing
 //! documents.
-//! - a  document can be   stored in different formats, with  or
+//! - a document can be stored in different formats, with or
 //! without a persistent model.
-//! - the drivers  for  storing  and retrieving documents  are
+//! - the drivers for storing and retrieving documents are
 //! plugged in when necessary.
-//! - a  document has a modification counter. This counter is
-//! incremented when the document is  modified.  When a document
-//! is stored,  the current  counter  value is memorized as the
-//! last storage  version of the   document.  A document  is
-//! considered to be  modified   when the  counter value  is
-//! different from the storage version.  Once  the document is
-//! saved  the storage  version  and the  counter  value are
-//! identical.  The document  is  now  not considered  to  be
+//! - a document has a modification counter. This counter is
+//! incremented when the document is modified. When a document
+//! is stored, the current counter value is memorized as the
+//! last storage version of the document. A document is
+//! considered to be modified when the counter value is
+//! different from the storage version. Once the document is
+//! saved the storage version and the counter value are
+//! identical. The document is now not considered to be
 //! modified.
 //! - a reference is a link between two documents. A reference has two
 //! components: the "From Document" and the "To Document". When
@@ -64,24 +64,24 @@ DEFINE_STANDARD_HANDLE(CDM_Document, Standard_Transient)
 //! the reference is created. The From Document is considered to
 //! be up to date relative to the To Document when the
 //! reference counter value is equal to the To Document counter value.
-//! -  retrieval of a document  having references does not imply
+//! -  retrieval of a document having references does not imply
 //! the retrieving of the referenced documents.
 class CDM_Document : public Standard_Transient
 {
 
 public:
-  //! The Update  method  will be called  once  for each
-  //! reference, but it  should not perform any computation,
+  //! The Update method will be called once for each
+  //! reference, but it should not perform any computation,
   //! to avoid multiple computation of a same document.
   Standard_EXPORT virtual void Update(const Handle(CDM_Document)& aToDocument,
                                       const Standard_Integer      aReferenceIdentifier,
                                       const Standard_Address      aModifContext);
 
-  //! This method Update   will be called
-  //! to signal the end   of the modified references list.
-  //! The    document     should    be  recomputed     and
-  //! UpdateFromDocuments  should be called.  Update should
-  //! returns True in case  of success, false otherwise.  In
+  //! This method Update will be called
+  //! to signal the end of the modified references list.
+  //! The document should be recomputed and
+  //! UpdateFromDocuments should be called. Update should
+  //! returns True in case of success, false otherwise. In
   //! case of Failure, additional information can be given in
   //! ErrorString.
   Standard_EXPORT virtual Standard_Boolean Update(TCollection_ExtendedString& ErrorString);
@@ -117,19 +117,19 @@ public:
   //! Removes all references having this document for From Document.
   Standard_EXPORT void RemoveAllReferences();
 
-  //! Returns the To Document  of the reference identified by
+  //! Returns the To Document of the reference identified by
   //! aReferenceIdentifier. If the ToDocument is stored and
   //! has not yet been retrieved, this method will retrieve it.
   Standard_EXPORT Handle(CDM_Document) Document(const Standard_Integer aReferenceIdentifier) const;
 
-  //! returns True if   the  To Document of the  reference
-  //! identified by aReferenceIdentifier is in session,  False
+  //! returns True if the To Document of the  reference
+  //! identified by aReferenceIdentifier is in session, False
   //! if it corresponds to a not yet retrieved document.
   Standard_EXPORT Standard_Boolean IsInSession(const Standard_Integer aReferenceIdentifier) const;
 
-  //! returns True if   the  To Document of the  reference
+  //! returns True if the To Document of the reference
   //! identified by aReferenceIdentifier has already been stored,
-  //! False  otherwise.
+  //! False otherwise.
   Standard_EXPORT Standard_Boolean IsStored(const Standard_Integer aReferenceIdentifier) const;
 
   //! returns the name of the metadata of the To Document of
@@ -137,11 +137,11 @@ public:
   Standard_EXPORT TCollection_ExtendedString
     Name(const Standard_Integer aReferenceIdentifier) const;
 
-  //! call  virtual  method   Update  on  all   referencing
-  //! documents.   This method keeps  the list  of the --
-  //! documents  to process.It may  be the starting of an
-  //! update -- cycle. If  not,  the reentrant calls made by
-  //! Update  method (without argument)  will append the
+  //! call virtual method Update on all referencing
+  //! documents. This method keeps the list of the
+  //! documents to process. It may be the starting of an
+  //! update cycle. If not, the reentrant calls made by
+  //! Update method (without argument) will append the
   //! referencing documents to the list and call the Update method
   //! (with arguments). Only the first call to UpdateFromDocuments
   //! generate call to Update().
@@ -161,14 +161,14 @@ public:
   //! returns True is this document references aDocument;
   Standard_EXPORT Standard_Boolean DeepReferences(const Handle(CDM_Document)& aDocument) const;
 
-  //! Copies a  reference  to  this document.   This  method
-  //! avoid retrieval of referenced document.  The arguments
-  //! are  the  original  document  and a  valid  reference
+  //! Copies a reference to this document. This method
+  //! avoid retrieval of referenced document. The arguments
+  //! are the original document and a valid reference
   //! identifier Returns the  local identifier.
   Standard_EXPORT Standard_Integer CopyReference(const Handle(CDM_Document)& aFromDocument,
                                                  const Standard_Integer      aReferenceIdentifier);
 
-  //! indicates  that  this document cannot be   modified.
+  //! indicates that this document cannot be modified.
   Standard_EXPORT Standard_Boolean IsReadOnly() const;
 
   //! indicates that the referenced document cannot be modified,
@@ -218,12 +218,12 @@ public:
 
   Standard_EXPORT Standard_Boolean IsStored() const;
 
-  //! returns  the value of  the modification counter at the
+  //! returns the value of the modification counter at the
   //! time of storage. By default returns 0.
   Standard_EXPORT Standard_Integer StorageVersion() const;
 
-  //! associates database  information to  a document which
-  //! has been stored.  The name of the  document is now the
+  //! associates database information to a document which
+  //! has been stored. The name of the document is now the
   //! name which has beenused to store the data.
   Standard_EXPORT void SetMetaData(const Handle(CDM_MetaData)& aMetaData);
 
@@ -257,7 +257,7 @@ public:
 
   Standard_EXPORT TCollection_ExtendedString RequestedPreviousVersion() const;
 
-  //! defines the Comment with  which the object should be stored.
+  //! defines the Comment with which the object should be stored.
   Standard_EXPORT void SetRequestedComment(const TCollection_ExtendedString& aComment);
 
   Standard_EXPORT TCollection_ExtendedString RequestedComment() const;
@@ -275,7 +275,7 @@ public:
   //! gets the `FileFormat`.Description resource.
   Standard_EXPORT TCollection_ExtendedString Description();
 
-  //! returns  true  if the   version is greater  than   the
+  //! returns true if the version is greater than the
   //! storage version
   Standard_EXPORT Standard_Boolean IsModified() const;
 
@@ -292,9 +292,9 @@ public:
 
   Standard_EXPORT const Handle(CDM_Application)& Application() const;
 
-  //! A  referenced  document  may  indicate   through  this
-  //! virtual  method that it does  not allow the closing of
-  //! aDocument  which  it references through  the reference
+  //! A referenced document may indicate through this
+  //! virtual method that it does not allow the closing of
+  //! aDocument which it references through the reference
   //! aReferenceIdentifier. By default returns Standard_True.
   Standard_EXPORT virtual Standard_Boolean CanCloseReference(
     const Handle(CDM_Document)& aDocument,
@@ -307,8 +307,8 @@ public:
   Standard_EXPORT virtual void CloseReference(const Handle(CDM_Document)& aDocument,
                                               const Standard_Integer      aReferenceIdentifier);
 
-  //! returns true if  the   document corresponding to  the
-  //! given   reference has    been retrieved  and  opened.
+  //! returns true if the document corresponding to the
+  //! given reference has been retrieved and opened.
   //! Otherwise returns false. This method does not retrieve
   //! the referenced document
   Standard_EXPORT Standard_Boolean IsOpened(const Standard_Integer aReferenceIdentifier) const;
@@ -356,7 +356,7 @@ protected:
   Standard_Boolean myResourcesAreLoaded;
 
 private:
-  //! the manager returned by  this method will be
+  //! the manager returned by this method will be
   //! used to search for the following resource items.
   Standard_EXPORT Handle(Resource_Manager) StorageResource();
 
index e716dab54eaac7dd93b60007679df24cbdda3502..90eb8a8f44bc336a401546a72b0ea83c085281e4 100644 (file)
@@ -91,8 +91,8 @@ public:
 
   friend class CDM_Reference;
   friend
-    //! associates database  information to  a document which
-    //! has been stored.  The name of the  document is now the
+    //! associates database information to a document which
+    //! has been stored. The name of the document is now the
     //! name which has beenused to store the data.
     Standard_EXPORT void
                               CDM_Document::SetMetaData(const Handle(CDM_MetaData)& aMetaData);
index 61362f707c74f7c8f3fd427f44a91d4610820bf4..2881a21d989e197298bb3427f05721fd91558bf7 100644 (file)
@@ -76,7 +76,7 @@ private:
   Standard_EXPORT void UnsetToDocument(const Handle(CDM_MetaData)&    aMetaData,
                                        const Handle(CDM_Application)& anApplication);
 
-  //! returns  true if the  ToDocument has been retrieved
+  //! returns true if the ToDocument has been retrieved
   //! and opened.
   Standard_EXPORT Standard_Boolean IsOpened() const;
 
index aa9d79f783abed7f0d2b8e1e17f47bceca4ebd00..51315d1fd11467cefff924bcf0697ed10788146f 100644 (file)
@@ -88,13 +88,13 @@ public:
   Standard_EXPORT static void WriteFileFormat(const Handle(Storage_Data)& aData,
                                               const Handle(CDM_Document)& aDocument);
 
-  //! tries  to get a format  in the  file.  returns an empty
+  //! tries to get a format in the file. returns an empty
   //! string if the file could not be read or does not have
   //! a FileFormat information.
   Standard_EXPORT static TCollection_ExtendedString FileFormat(
     const TCollection_ExtendedString& aFileName);
 
-  //! tries  to get a format  from the stream.  returns an empty
+  //! tries to get a format from the stream. returns an empty
   //! string if the file could not be read or does not have
   //! a FileFormat information.
   Standard_EXPORT static TCollection_ExtendedString FileFormat(Standard_IStream&     theIStream,
index 9a1279058e6c29f546aa601d6c0c6476a4a48565..5f10f576ef13d7a34648ef18dfcdbb207b2d5064 100644 (file)
@@ -32,16 +32,16 @@ DEFINE_STANDARD_HANDLE(PCDM_StorageDriver, PCDM_Writer)
 
 //! persistent implementation of storage.
 //!
-//! The  application  must redefine one the two Make()
-//! methods.  The first one, if  the application wants to
+//! The application must redefine one the two Make()
+//! methods. The first one, if the application wants to
 //! put only one document in the storage file.
 //!
-//! The  second  method  should  be   redefined  to  put
-//! additional document  that   could  be  used by   the
+//! The second method should be redefined to put
+//! additional document that could be used by the
 //! retrieval instead of the principal document, depending
-//! on the schema used during the retrieval.  For example,
-//! a    second     document   could   be     a   standard
-//! CDMShape_Document.    This  means   that a   client
+//! on the schema used during the retrieval. For example,
+//! a second document could  be a standard
+//! CDMShape_Document. This means that a client
 //! application will already be able to extract a CDMShape_Document
 //! of the file, if the Shape Schema remains unchanged.
 class PCDM_StorageDriver : public PCDM_Writer
@@ -51,7 +51,7 @@ public:
   //! raises NotImplemented.
   Standard_EXPORT virtual Handle(PCDM_Document) Make(const Handle(CDM_Document)& aDocument);
 
-  //! By default, puts  in the Sequence the  document returns
+  //! By default, puts in the Sequence the document returns
   //! by the previous Make method.
   Standard_EXPORT virtual void Make(const Handle(CDM_Document)& aDocument,
                                     PCDM_SequenceOfDocument&    Documents);
@@ -60,7 +60,7 @@ public:
   //! Make method.
   //! stores the content of the Document into a new file.
   //!
-  //! by  default  Write will  use Make   method to build a persistent
+  //! by default Write will use Make method to build a persistent
   //! document and the Schema method to write the persistent document.
   Standard_EXPORT virtual void Write(
     const Handle(CDM_Document)&       aDocument,
index 1d8515d5d95d3ce2c697a5e7fb3fe32c61d6176c..3b5f7cbbd0e8f3942574dc55e4c7d280d0bf8f5b 100644 (file)
@@ -27,7 +27,7 @@ DEFINE_STANDARD_HANDLE(AppStdL_Application, TDocStd_Application)
 class AppStdL_Application : public TDocStd_Application
 {
 public:
-  //! returns   the file  name  which  contains  application
+  //! returns the file name which contains application
   //! resources
   Standard_EXPORT Standard_CString ResourcesName() Standard_OVERRIDE;
 
index fd0a71b6da5371237ff02a4889ccf302dc641f84..ee8a3cc8f2340f147191bcb4d8e9efb9117eefac 100644 (file)
@@ -101,19 +101,19 @@ public:
   //! Returns true if <me> owns an attribute with <anID> as ID.
   Standard_EXPORT Standard_Boolean IsAttribute(const Standard_GUID& anID) const;
 
-  //! Adds an Attribute  to the current label. Raises if
+  //! Adds an Attribute to the current label. Raises if
   //! there is already one.
   Standard_EXPORT void AddAttribute(const Handle(TDF_Attribute)& anAttribute,
                                     const Standard_Boolean       append = Standard_True) const;
 
-  //! Forgets an  Attribute   from the  current  label,
-  //! setting its   forgotten status true and  its valid
-  //! status false. Raises if   the attribute is not in
+  //! Forgets an Attribute from the current label,
+  //! setting its forgotten status true and  its valid
+  //! status false. Raises if the attribute is not in
   //! the structure.
   Standard_EXPORT void ForgetAttribute(const Handle(TDF_Attribute)& anAttribute) const;
 
-  //! Forgets the  Attribute of  GUID <aguid> from   the
-  //! current label   . If the   attribute doesn't exist
+  //! Forgets the Attribute of GUID <aguid> from the
+  //! current label. If the attribute doesn't exist
   //! returns False. Otherwise returns True.
   Standard_EXPORT Standard_Boolean ForgetAttribute(const Standard_GUID& aguid) const;
 
@@ -217,7 +217,7 @@ public:
   Standard_EXPORT TDF_Label FindChild(const Standard_Integer aTag,
                                       const Standard_Boolean create = Standard_True) const;
 
-  //! Create  a new child   label of me  using autoamtic
+  //! Create a new child label of me using autoamtic
   //! delivery tags provided by TagSource.
   TDF_Label NewChild() const;
 
@@ -272,12 +272,12 @@ private:
                                  const Handle(TDF_Attribute)& anAttribute,
                                  const Standard_Boolean       append) const;
 
-  //! Forgets an Attribute from <fromNode>.  Raises if
+  //! Forgets an Attribute from <fromNode>. Raises if
   //! the attribute is not in the structure.
   Standard_EXPORT void ForgetFromNode(const TDF_LabelNodePtr&      fromNode,
                                       const Handle(TDF_Attribute)& anAttribute) const;
 
-  //! Resumes a forgotten Attribute to <toNode>.  Raises
+  //! Resumes a forgotten Attribute to <toNode>. Raises
   //! if the attribute is not in the structure.
   Standard_EXPORT void ResumeToNode(const TDF_LabelNodePtr&      fromNode,
                                     const Handle(TDF_Attribute)& anAttribute) const;
index dd3a877cdbd0cc8cdf1a75a2f291c76afecdee2f..e683796541fd32cc0dd4871c9617d2c73416aee3 100644 (file)
@@ -47,7 +47,7 @@ public:
                                                           const TCollection_AsciiString& string);
 
   //! Finds, or creates, an AsciiString attribute with explicit user defined <guid> and sets
-  //! <string>. The Name attribute  is  returned.
+  //! <string>. The Name attribute is returned.
   Standard_EXPORT static Handle(TDataStd_AsciiString) Set(const TDF_Label&               label,
                                                           const Standard_GUID&           guid,
                                                           const TCollection_AsciiString& string);
@@ -56,7 +56,7 @@ public:
 
   Standard_EXPORT void Set(const TCollection_AsciiString& S);
 
-  //! Sets the explicit user defined GUID  to the attribute.
+  //! Sets the explicit user defined GUID to the attribute.
   Standard_EXPORT void SetID(const Standard_GUID& guid) Standard_OVERRIDE;
 
   //! Sets default GUID for the attribute.
index a02c09fb35b7ac79e0bf85dc8087e1b2b58b07dc..3724e9a1c05a2057ab6ca7b6f80f84986d1e2426 100644 (file)
@@ -55,7 +55,7 @@ public:
 
   //! Sets the <Index>th element of the array to <Value>
   //! OutOfRange exception is raised if <Index> doesn't respect Lower and Upper bounds of the
-  //! internal  array.
+  //! internal array.
   Standard_EXPORT void SetValue(const Standard_Integer index, const Standard_Boolean value);
 
   //! Sets the explicit GUID (user defined) for the attribute.
index 6073cacf929e872dded0e8fffbbddb2187238d5b..a7d5b961062c667408c1cdab6c16da4b05560685 100644 (file)
@@ -67,7 +67,7 @@ public:
 
   //! Sets the <Index>th element of the array to <Value>
   //! OutOfRange exception is raised if <Index> doesn't respect Lower and Upper bounds of the
-  //! internal  array.
+  //! internal array.
   Standard_EXPORT void SetValue(const Standard_Integer index, const Standard_Byte value);
 
   //! Sets the explicit GUID (user defined) for the attribute.
@@ -92,7 +92,7 @@ public:
 
   const Handle(TColStd_HArray1OfByte)& InternalArray() const { return myValue; }
 
-  //! Sets the inner array <myValue>  of the attribute to
+  //! Sets the inner array <myValue> of the attribute to
   //! <newArray>. If value of <newArray> differs from <myValue>, Backup performed
   //! and myValue refers to new instance of HArray1OfInteger that holds <newArray>
   //! values.
@@ -103,7 +103,7 @@ public:
 
   Standard_Boolean GetDelta() const { return myIsDelta; }
 
-  //! for internal  use  only!
+  //! for internal use only!
   void SetDelta(const Standard_Boolean isDelta) { myIsDelta = isDelta; }
 
   Standard_EXPORT TDataStd_ByteArray();
index a6a3abb13f0a551565740127a56a20f76d66c584..6c7641c34c564039472f167801f2fc6aaff734e8 100644 (file)
@@ -24,8 +24,8 @@
 #include <Standard_Boolean.hxx>
 class TDataStd_TreeNode;
 
-//! Iterates on the  ChildStepren step of  a step, at the
-//! first level  only.   It  is possible  to ask  the
+//! Iterates on the ChildStepren step of a step, at the
+//! first level only. It is possible to ask the
 //! iterator to explore all the sub step levels of the
 //! given one, with the option "allLevels".
 class TDataStd_ChildNodeIterator
@@ -42,9 +42,9 @@ public:
   Standard_EXPORT TDataStd_ChildNodeIterator(const Handle(TDataStd_TreeNode)& aTreeNode,
                                              const Standard_Boolean allLevels = Standard_False);
 
-  //! Initializes the iteration on  the Children Step of
-  //! the  given Step. If <allLevels>  option is  set to
-  //! true, it explores not  only the first, but all the
+  //! Initializes the iteration on the Children Step of
+  //! the given Step. If <allLevels> option is set to
+  //! true, it explores not only the first, but all the
   //! sub Step levels.
   Standard_EXPORT void Initialize(const Handle(TDataStd_TreeNode)& aTreeNode,
                                   const Standard_Boolean           allLevels = Standard_False);
index 5a79aadb405937af1db0bfbb0359509b7197f61b..006b0510064f2b4c38e85017bf70bfef9f42fd90 100644 (file)
@@ -22,7 +22,7 @@
 class TDataStd_Comment;
 DEFINE_STANDARD_HANDLE(TDataStd_Comment, TDataStd_GenericExtString)
 
-//! Comment attribute. may be  associated to any label
+//! Comment attribute. may be associated to any label
 //! to store user comment.
 class TDataStd_Comment : public TDataStd_GenericExtString
 {
@@ -33,7 +33,7 @@ public:
   //! Returns the GUID for comments.
   Standard_EXPORT static const Standard_GUID& GetID();
 
-  //! Find, or create  a   Comment attribute.  the  Comment
+  //! Find, or create a Comment attribute. the Comment
   //! attribute is returned.
   Standard_EXPORT static Handle(TDataStd_Comment) Set(const TDF_Label& label);
 
@@ -48,7 +48,7 @@ public:
 
   Standard_EXPORT void Set(const TCollection_ExtendedString& S) Standard_OVERRIDE;
 
-  //! Sets the explicit user defined GUID  to the attribute.
+  //! Sets the explicit user defined GUID to the attribute.
   Standard_EXPORT void SetID(const Standard_GUID& guid) Standard_OVERRIDE;
 
   //! Sets default GUID for the attribute.
index 66e261d68e2d6c6e93e9721c7b2a3da3af985ecd..d0770176e4a57315d27f16df9610e55b3b629a36 100644 (file)
@@ -29,7 +29,7 @@ class TDF_RelocationTable;
 class TDataStd_Current;
 DEFINE_STANDARD_HANDLE(TDataStd_Current, TDF_Attribute)
 
-//! this attribute,  located at root label,  manage an
+//! this attribute, located at root label, manage an
 //! access to a current label.
 class TDataStd_Current : public TDF_Attribute
 {
@@ -45,7 +45,7 @@ public:
   //! returns current of <acces> Framework. raise if (!Has)
   Standard_EXPORT static TDF_Label Get(const TDF_Label& acces);
 
-  //! returns True if a  current label is managed in <acces>
+  //! returns True if a current label is managed in <acces>
   //! Framework.
   //! class methods
   //! =============
index f939f821cd65924dde12c806bc4db4004c782b5a..1c8c3b121aa3a53b288256a3878e7052509a0585 100644 (file)
@@ -46,7 +46,7 @@ public:
   Standard_EXPORT static Standard_Boolean Find(const TDF_Label&            current,
                                                Handle(TDataStd_Directory)& D);
 
-  //! Creates  an  empty   Directory attribute,  located  at
+  //! Creates an empty Directory attribute, located at
   //! <label>. Raises if <label> has attribute
   Standard_EXPORT static Handle(TDataStd_Directory) New(const TDF_Label& label);
 
index 046bb75950efab1de5f7496dda01479ecbdaf4b7..037412929497baaf60e7fa51b7bedc72b24879dd 100644 (file)
@@ -33,10 +33,10 @@ DEFINE_STANDARD_HANDLE(TDataStd_Expression, TDF_Attribute)
 //! Expression attribute.
 //! ====================
 //!
-//! * Data Structure  of the Expression   is stored in a
+//! * Data Structure of the Expression is stored in a
 //! string and references to variables used by the string
 //!
-//! Warning:  To be consistent,  each  Variable  referenced by  the
+//! Warning: To be consistent, each Variable referenced by the
 //! expression must have its equivalent in the string
 class TDataStd_Expression : public TDF_Attribute
 {
index 452759081ac01e609d8a884141b38523661f4712..3ce3d1bcb8e653591e3feffcb8808573e221839a 100644 (file)
@@ -57,7 +57,7 @@ public:
     const Standard_Boolean isDelta = Standard_False);
 
   //! Finds, or creates, an ExtStringArray attribute with explicit user defined <guid>.
-  //! The ExtStringArray attribute  is  returned.
+  //! The ExtStringArray attribute is returned.
   Standard_EXPORT static Handle(TDataStd_ExtStringArray) Set(
     const TDF_Label&       label,
     const Standard_GUID&   theGuid,
@@ -68,9 +68,9 @@ public:
   //! Initializes the inner array with bounds from <lower> to <upper>
   Standard_EXPORT void Init(const Standard_Integer lower, const Standard_Integer upper);
 
-  //! Sets  the   <Index>th  element  of   the  array to <Value>
+  //! Sets the <Index>th element of the array to <Value>
   //! OutOfRange exception is raised if <Index> doesn't respect Lower and Upper bounds of the
-  //! internal  array.
+  //! internal array.
   Standard_EXPORT void SetValue(const Standard_Integer            Index,
                                 const TCollection_ExtendedString& Value);
 
@@ -80,7 +80,7 @@ public:
   //! Sets default GUID for the attribute.
   Standard_EXPORT void SetID() Standard_OVERRIDE;
 
-  //! Returns the value of  the  <Index>th element of the array
+  //! Returns the value of the <Index>th element of the array
   Standard_EXPORT const TCollection_ExtendedString& Value(const Standard_Integer Index) const;
 
   const TCollection_ExtendedString& operator()(const Standard_Integer Index) const
@@ -110,7 +110,7 @@ public:
 
   Standard_Boolean GetDelta() const { return myIsDelta; }
 
-  //! for  internal  use  only!
+  //! for internal use only!
   void SetDelta(const Standard_Boolean isDelta) { myIsDelta = isDelta; }
 
   Standard_EXPORT TDataStd_ExtStringArray();
index ce4113bee660fe44bc355c8d382390912826f567..97054861d5b7d4eef6671e11eed64fda838f0463 100644 (file)
@@ -34,7 +34,7 @@ public:
   //! Sets <S> as name. Raises if <S> is not a valid name.
   Standard_EXPORT virtual void Set(const TCollection_ExtendedString& S);
 
-  //! Sets the explicit user defined GUID  to the attribute.
+  //! Sets the explicit user defined GUID to the attribute.
   Standard_EXPORT void SetID(const Standard_GUID& guid) Standard_OVERRIDE;
 
   //! Returns the name contained in this name attribute.
index 415661f059d03789e4811314659dc640c0159964..b679db6e9d74f7978ab0f4ee96af9d6c35e9b57c 100644 (file)
@@ -78,7 +78,7 @@ public:
 
   Standard_Boolean GetDelta() const { return myIsDelta; }
 
-  //! for  internal  use  only!
+  //! for internal use only!
   void SetDelta(const Standard_Boolean isDelta) { myIsDelta = isDelta; }
 
   Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
index aff45b972476f3ef1a4dd5b0fa1737c0bd5ca182..82a3f9365a69205cb374eb65f1416f1310f1b5b1 100644 (file)
@@ -41,12 +41,12 @@ public:
   Standard_EXPORT static const Standard_GUID& GetID();
 
   //! Finds, or creates, an Integer attribute and sets <value>
-  //! the Integer  attribute is returned.
+  //! the Integer attribute is returned.
   Standard_EXPORT static Handle(TDataStd_Integer) Set(const TDF_Label&       label,
                                                       const Standard_Integer value);
 
   //! Finds, or creates, an Integer attribute with explicit user defined <guid> and sets <value>.
-  //! The Integer attribute  is  returned.
+  //! The Integer attribute is returned.
   Standard_EXPORT static Handle(TDataStd_Integer) Set(const TDF_Label&       label,
                                                       const Standard_GUID&   guid,
                                                       const Standard_Integer value);
index 2e191cc434e15fa2c830a0121947b7241020d579..89404a1c2f9646ae745b23dcc56e77c861498c2a 100644 (file)
@@ -56,7 +56,7 @@ public:
     const Standard_Boolean isDelta = Standard_False);
 
   //! Finds, or creates, an IntegerArray attribute with explicit user defined <guid>.
-  //! The IntegerArray attribute  is  returned.
+  //! The IntegerArray attribute is returned.
   Standard_EXPORT static Handle(TDataStd_IntegerArray) Set(
     const TDF_Label&       label,
     const Standard_GUID&   theGuid,
@@ -67,7 +67,7 @@ public:
   //! Initialize the inner array with bounds from <lower> to <upper>
   Standard_EXPORT void Init(const Standard_Integer lower, const Standard_Integer upper);
 
-  //! Sets  the   <Index>th  element  of   the  array to <Value>
+  //! Sets the <Index>th element of the array to <Value>
   //! OutOfRange exception is raised if <Index> doesn't respect Lower and Upper bounds of the
   //! internal  array.
   Standard_EXPORT void SetValue(const Standard_Integer Index, const Standard_Integer Value);
@@ -78,7 +78,7 @@ public:
   //! Sets default GUID for the attribute.
   Standard_EXPORT void SetID() Standard_OVERRIDE;
 
-  //! Return the value of  the  <Index>th element of the array
+  //! Return the value of the <Index>th element of the array
   Standard_EXPORT Standard_Integer Value(const Standard_Integer Index) const;
 
   Standard_Integer operator()(const Standard_Integer Index) const { return Value(Index); }
@@ -93,7 +93,7 @@ public:
   //! terms of the number of elements it contains.
   Standard_EXPORT Standard_Integer Length() const;
 
-  //! Sets the inner array <myValue>  of the IntegerArray attribute to
+  //! Sets the inner array <myValue> of the IntegerArray attribute to
   //! <newArray>. If value of <newArray> differs from <myValue>, Backup performed
   //! and myValue refers to new instance of HArray1OfInteger that holds <newArray>
   //! values
@@ -107,7 +107,7 @@ public:
 
   Standard_Boolean GetDelta() const { return myIsDelta; }
 
-  //! for  internal  use  only!
+  //! for internal use only!
   void SetDelta(const Standard_Boolean isDelta) { myIsDelta = isDelta; }
 
   Standard_EXPORT TDataStd_IntegerArray();
index 9e9b5134b0e85173aa3c41c9c100149c41cee2f0..3fedaa3bb3d54341f57d4c28cc442d01074ed754 100644 (file)
@@ -37,15 +37,15 @@ public:
   Standard_EXPORT static const Standard_GUID& GetID();
 
   //! Creates (if does not exist) and sets the name in the name attribute.
-  //! from any label <L>  search in father  labels (L is not
-  //! concerned) the first name attribute.if found set it in
+  //! from any label <L> search in father labels (L is not
+  //! concerned) the first name attribute. if found set it in
   //! <father>.
   //! class methods working on the name tree
   //! ======================================
-  //! Search in the  whole TDF_Data the Name attribute which
+  //! Search in the whole TDF_Data the Name attribute which
   //! fit with <fullPath>. Returns True if found.
-  //! Search  under <currentLabel>  a  label which fit with
-  //! <name>. Returns True if  found. Shortcut which  avoids
+  //! Search under <currentLabel> a label which fit with
+  //! <name>. Returns True if found. Shortcut which avoids
   //! building a ListOfExtendedStrin.
   //! Search in the whole TDF_Data the label which fit with name
   //! Returns True if found.
@@ -62,7 +62,7 @@ public:
                                                    const TCollection_ExtendedString& string);
 
   //! Finds, or creates, a Name attribute with explicit user defined <guid> and sets <string>.
-  //! The Name attribute  is  returned.
+  //! The Name attribute is returned.
   Standard_EXPORT static Handle(TDataStd_Name) Set(const TDF_Label&                  label,
                                                    const Standard_GUID&              guid,
                                                    const TCollection_ExtendedString& string);
@@ -72,7 +72,7 @@ public:
   //! Sets <S> as name. Raises if <S> is not a valid name.
   Standard_EXPORT void Set(const TCollection_ExtendedString& S) Standard_OVERRIDE;
 
-  //! Sets the explicit user defined GUID  to the attribute.
+  //! Sets the explicit user defined GUID to the attribute.
   Standard_EXPORT void SetID(const Standard_GUID& guid) Standard_OVERRIDE;
 
   //! Sets default GUID for the attribute.
index d7320823c0f23be773b154314029d64303994576..54a255caf751e6c497acf50ce1bd7a0f1ce44528 100644 (file)
@@ -41,12 +41,12 @@ public:
   //! class methods
   //! =============
   //! try to retrieve a NoteBook attribute at <current> label
-  //! or in  fathers  label of  <current>. Returns True  if
+  //! or in fathers label of <current>. Returns True if
   //! found and set <N>.
   Standard_EXPORT static Standard_Boolean Find(const TDF_Label&           current,
                                                Handle(TDataStd_NoteBook)& N);
 
-  //! Create  an  enpty   NoteBook attribute,  located  at
+  //! Create an enpty NoteBook attribute, located at
   //! <label>. Raises if <label> has attribute
   Standard_EXPORT static Handle(TDataStd_NoteBook) New(const TDF_Label& label);
 
@@ -56,14 +56,14 @@ public:
 
   Standard_EXPORT TDataStd_NoteBook();
 
-  //! Tool to Create  an  Integer  attribute from  <value>,
-  //! Insert it in   a  new son  label   of <me>. The   Real
+  //! Tool to Create an Integer attribute from <value>,
+  //! Insert it in a new son label of <me>. The Real
   //! attribute is returned.
   Standard_EXPORT Handle(TDataStd_Real) Append(const Standard_Real    value,
                                                const Standard_Boolean isExported = Standard_False);
 
-  //! Tool to Create  an Real attribute from <value>, Insert
-  //! it  in a new son label  of <me>. The Integer attribute
+  //! Tool to Create an Real attribute from <value>, Insert
+  //! it in a new son label  of <me>. The Integer attribute
   //! is returned.
   Standard_EXPORT Handle(TDataStd_Integer) Append(
     const Standard_Integer value,
index c7aee126e65e2c9643cba57914b7330697a227bf..9cb879781d01bb26cf1569eea51528385f9ea691 100644 (file)
@@ -42,7 +42,7 @@ public:
   Standard_EXPORT static const Standard_GUID& GetID();
 
   //! Finds, or creates, a Real attribute with default GUID and sets <value>.
-  //! The Real attribute  is  returned. The  Real  dimension is Scalar by default.
+  //! The Real attribute is returned. The Real dimension is Scalar by default.
   //! Use SetDimension to overwrite.
   //! Real methods
   //! ============
@@ -50,7 +50,7 @@ public:
                                                    const Standard_Real value);
 
   //! Finds, or creates, a Real attribute with explicit GUID and sets <value>.
-  //! The Real attribute  is  returned.
+  //! The Real attribute is returned.
   //! Real methods
   //! ============
   Standard_EXPORT static Handle(TDataStd_Real) Set(const TDF_Label&     label,
index 21cee85ca3a6c93d29acf78a438c0f2787eb9c63..e49ecdbc99aeabc4fec49a2e836a281d29b5fe96 100644 (file)
@@ -57,7 +57,7 @@ public:
     const Standard_Boolean isDelta = Standard_False);
 
   //! Finds, or creates, an RealArray attribute with explicit user defined <guid>.
-  //! The RealArray attribute  is  returned.
+  //! The RealArray attribute is returned.
   Standard_EXPORT static Handle(TDataStd_RealArray) Set(
     const TDF_Label&       label,
     const Standard_GUID&   theGuid,
@@ -74,12 +74,12 @@ public:
   //! Sets default GUID for the attribute.
   Standard_EXPORT void SetID() Standard_OVERRIDE;
 
-  //! Sets  the   <Index>th  element  of   the  array to <Value>
+  //! Sets the <Index>th element of the array to <Value>
   //! OutOfRange exception is raised if <Index> doesn't respect Lower and Upper bounds of the
-  //! internal  array.
+  //! internal array.
   Standard_EXPORT void SetValue(const Standard_Integer Index, const Standard_Real Value);
 
-  //! Return the value of  the  <Index>th element of the array
+  //! Return the value of the <Index>th element of the array
   Standard_EXPORT Standard_Real Value(const Standard_Integer Index) const;
 
   Standard_Real operator()(const Standard_Integer Index) const { return Value(Index); }
@@ -108,7 +108,7 @@ public:
 
   Standard_Boolean GetDelta() const { return myIsDelta; }
 
-  //! for  internal  use  only!
+  //! for internal use only!
   void SetDelta(const Standard_Boolean isDelta) { myIsDelta = isDelta; }
 
   Standard_EXPORT TDataStd_RealArray();
index 624dbe147021469f44ed3a4e7fe408ef9ac52203..ede948b5dde71912c6e5071a38e785f2a61692c4 100644 (file)
@@ -58,7 +58,7 @@ public:
 
   //! Sets the <Index>th element of the array to <Value>
   //! OutOfRange exception is raised if <Index> doesn't respect Lower and Upper bounds of the
-  //! internal  array.
+  //! internal array.
   Standard_EXPORT void SetValue(const Standard_Integer index, const TDF_Label& value);
 
   //! Sets the explicit GUID (user defined) for the attribute.
index 506aa9c35e7c724ca27630e72d5da70c54de5c10..6fb01a5f6cb21d6da5cf3ea591e8847aa2619e90 100644 (file)
@@ -294,9 +294,8 @@ public:
     Save(const Handle(TDocStd_Document)& theDoc,
          const Message_ProgressRange&    theRange = Message_ProgressRange());
 
-  //! Save the  active document  in the file  <name> in the
-  //! path <path>  .  overwrite  the file  if  it
-  //! already exist.
+  //! Save the active document in the file <name> in the
+  //! path <path>. overwrite the file if it already exists.
   Standard_EXPORT PCDM_StoreStatus
     SaveAs(const Handle(TDocStd_Document)&   theDoc,
            const TCollection_ExtendedString& path,