summaryrefslogtreecommitdiff
path: root/autodoc/inc/ary/cpp/namechain.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/inc/ary/cpp/namechain.hxx')
-rw-r--r--autodoc/inc/ary/cpp/namechain.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/autodoc/inc/ary/cpp/namechain.hxx b/autodoc/inc/ary/cpp/namechain.hxx
index 9e85b4ee4b0d..d8894bbdd800 100644
--- a/autodoc/inc/ary/cpp/namechain.hxx
+++ b/autodoc/inc/ary/cpp/namechain.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -49,30 +49,30 @@ class NameSegment
{
public:
NameSegment(
- const char * i_sName );
+ const char * i_sName );
/** @precond MPT pTemplate.
This cannot be used, except of inserting a new element
in the segment list of ary::cpp::ut::NameChain. In that
case, the template parameter list doe snot yet exist.
*/
NameSegment(
- const NameSegment & i_rSeg );
+ const NameSegment & i_rSeg );
~NameSegment();
// OPERATIONS
List_TplParameter & AddTemplate();
// INQUIRY
- const String & Name() const;
+ const String & Name() const;
/// @return as strcmp().
- intt Compare(
- const NameSegment & i_rOther ) const;
- void Get_Text_AsScope(
+ intt Compare(
+ const NameSegment & i_rOther ) const;
+ void Get_Text_AsScope(
StreamStr & o_rOut,
const ary::cpp::Gate &
i_rGate ) const;
- void Get_Text_AsMainType(
+ void Get_Text_AsMainType(
StreamStr & o_rName,
StreamStr & o_rPostName,
const ary::cpp::Gate &
@@ -80,7 +80,7 @@ class NameSegment
NameSegment& operator=(const NameSegment&);
private:
- String sName;
+ String sName;
Dyn<List_TplParameter>
pTemplate;
};
@@ -96,7 +96,7 @@ class NameChain
// OPERATIONS
void Add_Segment(
- const char * i_sSeg );
+ const char * i_sSeg );
/** @precond aSegments.size() > 0.
Which means: Add_Segment() has to be called at least once before.
*/
@@ -106,13 +106,13 @@ class NameChain
const_iterator begin() const { return aSegments.begin(); }
const_iterator end() const { return aSegments.end(); }
- /// @return like strcmp.
- intt Compare(
- const NameChain & i_rChain ) const;
+ /// @return like strcmp.
+ intt Compare(
+ const NameChain & i_rChain ) const;
/// @ATTENTION Return value is volatile. Not reentrance enabled.
- const String & LastSegment() const;
+ const String & LastSegment() const;
- void Get_Text(
+ void Get_Text(
StreamStr & o_rPreName,
StreamStr & o_rName,
StreamStr & o_rPostName,