summaryrefslogtreecommitdiff
path: root/l10ntools/inc/l10ntools/file.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/inc/l10ntools/file.hxx')
-rw-r--r--l10ntools/inc/l10ntools/file.hxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/l10ntools/inc/l10ntools/file.hxx b/l10ntools/inc/l10ntools/file.hxx
deleted file mode 100644
index fae252e5f9..0000000000
--- a/l10ntools/inc/l10ntools/file.hxx
+++ /dev/null
@@ -1,25 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-#include "rtl/ustring.hxx"
-
-namespace transex
-{
-
-class File
-{
- private:
- rtl::OUString sFileName;
- rtl::OUString sFullName;
-
- public:
- rtl::OUString getFileName(){ return sFileName; }
- rtl::OUString getFullName(){ return sFullName; }
-
- File( const rtl::OUString sFullName , const rtl::OUString sFile );
-
- static bool lessFile ( const File& rKey1, const File& rKey2 );
-
-};
-
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */