summaryrefslogtreecommitdiff
path: root/cosv/source/storage/file.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cosv/source/storage/file.cxx')
-rw-r--r--cosv/source/storage/file.cxx41
1 files changed, 0 insertions, 41 deletions
diff --git a/cosv/source/storage/file.cxx b/cosv/source/storage/file.cxx
index 1313b62c2fc1..3be09d13695f 100644
--- a/cosv/source/storage/file.cxx
+++ b/cosv/source/storage/file.cxx
@@ -36,14 +36,6 @@ namespace csv
{
-File::File( uintt i_nMode )
- : // aPath,
- pStream(0),
- nMode(i_nMode),
- eLastIO(io_none)
-{
-}
-
File::File( const ploc::Path & i_rLocation,
uintt i_nMode )
: aPath(i_rLocation),
@@ -77,39 +69,6 @@ File::~File()
close();
}
-bool
-File::Assign( ploc::Path i_rLocation )
-{
- if (is_open() )
- return false;
-
- InvalidatePath();
- aPath = i_rLocation;
- return true;
-}
-
-bool
-File::Assign( const char * i_sLocation )
-{
- if (is_open() )
- return false;
-
- InvalidatePath();
- aPath.Set( i_sLocation );
- return true;
-}
-
-bool
-File::Assign( const String & i_sLocation )
-{
- if (is_open() )
- return false;
-
- InvalidatePath();
- aPath.Set( i_sLocation );
- return true;
-}
-
uintt
File::do_read( void * out_pDest,
uintt i_nNrofBytes )