summaryrefslogtreecommitdiff
path: root/cosv/inc/cosv/ploc.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cosv/inc/cosv/ploc.hxx')
-rw-r--r--cosv/inc/cosv/ploc.hxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/cosv/inc/cosv/ploc.hxx b/cosv/inc/cosv/ploc.hxx
index c082951b33cd..a67cbe1ca2d8 100644
--- a/cosv/inc/cosv/ploc.hxx
+++ b/cosv/inc/cosv/ploc.hxx
@@ -85,9 +85,6 @@ class Path
/// Directories have a delimiter at the end, files not.
void Get(
- ostream & o_rPath ) const;
- /// Directories have a delimiter at the end, files not.
- void Get(
bostream & o_rPath ) const;
// ACCESS
DirectoryChain & DirChain() { return aPath; }
@@ -104,17 +101,6 @@ class Path
} // namespace ploc
} // namespace csv
-
-
-/// Directories produce a delimiter at the end, files not.
-inline csv::ostream &
-operator<<( csv::ostream & o_rOut,
- const csv::ploc::Path & i_rPath )
-{
- i_rPath.Get(o_rOut);
- return o_rOut;
-}
-
/// Directories produce a delimiter at the end, files not.
inline csv::bostream &
operator<<( csv::bostream & o_rOut,
@@ -124,8 +110,6 @@ operator<<( csv::bostream & o_rOut,
return o_rOut;
}
-
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */