summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-27 23:09:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-27 23:09:24 +0100
commit74ddfb058c33f980784d3e4c65cf901d1d1702a5 (patch)
tree1c6dd847a0a7482cfbfe786261fcd0f6522b734e /cosv
parent9f0e1d859ea744cd8b600dd229bfe30a6bf2bc56 (diff)
ditch unused code
Diffstat (limited to 'cosv')
-rw-r--r--cosv/inc/cosv/dirchain.hxx16
-rw-r--r--cosv/inc/cosv/string.hxx16
-rw-r--r--cosv/source/storage/dirchain.cxx12
3 files changed, 0 insertions, 44 deletions
diff --git a/cosv/inc/cosv/dirchain.hxx b/cosv/inc/cosv/dirchain.hxx
index 3c53134f0396..ca136e51164c 100644
--- a/cosv/inc/cosv/dirchain.hxx
+++ b/cosv/inc/cosv/dirchain.hxx
@@ -96,9 +96,6 @@ class DirectoryChain
const String & Back() const;
void Get(
- ostream & o_rPath,
- const char * i_sDelimiter ) const;
- void Get(
bostream & o_rPath,
const char * i_sDelimiter ) const;
private:
@@ -145,15 +142,6 @@ DirectoryChain::Back() const
} // namespace ploc
} // namespace csv
-
-inline csv::ostream &
-operator<<( csv::ostream & o_rOut,
- const csv::ploc::DirectoryChain & i_rSubPath )
-{
- i_rSubPath.Get(o_rOut, csv::ploc::Delimiter());
- return o_rOut;
-}
-
inline csv::bostream &
operator<<( csv::bostream & o_rOut,
const csv::ploc::DirectoryChain & i_rSubPath )
@@ -162,10 +150,6 @@ operator<<( csv::bostream & o_rOut,
return o_rOut;
}
-
-
#endif
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cosv/inc/cosv/string.hxx b/cosv/inc/cosv/string.hxx
index 84329f27fda2..fa8a4b488b7e 100644
--- a/cosv/inc/cosv/string.hxx
+++ b/cosv/inc/cosv/string.hxx
@@ -247,16 +247,6 @@ int compare(
const CharOrder_Table & i_rOrder,
const char * i_s1,
const char * i_s2 );
-
- //*** Defined order, substrings
-
-int compare(
- const CharOrder_Table & i_rOrder,
- const char * i_s1,
- const char * i_s2,
- csv::str::size i_nLength );
-
-
} // namespace csv
@@ -506,9 +496,6 @@ operator<<( csv::ostream & o_rOut,
{ o_rOut << i_rSrc.c_str(); return o_rOut; }
-
-
-
//****************** typedefs *********************//
namespace csv
@@ -518,9 +505,6 @@ typedef std::vector<String> StringVector;
}
-
-
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cosv/source/storage/dirchain.cxx b/cosv/source/storage/dirchain.cxx
index fdaf9b12626f..f87557f60a86 100644
--- a/cosv/source/storage/dirchain.cxx
+++ b/cosv/source/storage/dirchain.cxx
@@ -95,18 +95,6 @@ DirectoryChain::PopBack( uintt i_nCount )
}
void
-DirectoryChain::Get( ostream & o_rPath,
- const char * i_sDelimiter ) const
-{
- for ( std::vector<String>::const_iterator it = aPath.begin();
- it != aPath.end();
- ++it )
- {
- o_rPath << (*it).c_str() << i_sDelimiter;
- }
-}
-
-void
DirectoryChain::Get( bostream & o_rPath,
const char * i_sDelimiter ) const
{