diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-04-11 19:35:01 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-04-11 19:35:01 +0000 |
commit | 4b2dee940b0d77073c96e005f4daf378a486eec8 (patch) | |
tree | 143bedbd6709056a55c3fc3f85d2e66463531839 /transex3 | |
parent | bbc03a0a05a79d82f526d309f8715f549052b435 (diff) |
INTEGRATION: CWS hedaburemove01 (1.1.2); FILE ADDED
2007/02/09 16:13:47 vg 1.1.2.1: #72503# get rid of hedabu procedure: Moving headers to transex3/inc/transex3 and correspondent necessary changes
Diffstat (limited to 'transex3')
-rw-r--r-- | transex3/inc/transex3/file.hxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/transex3/inc/transex3/file.hxx b/transex3/inc/transex3/file.hxx new file mode 100644 index 000000000000..e3a1a46b4ee8 --- /dev/null +++ b/transex3/inc/transex3/file.hxx @@ -0,0 +1,23 @@ +#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 sFile ); + File( const rtl::OUString sFullName , const rtl::OUString sFile ); + + static bool lessFile ( const File& rKey1, const File& rKey2 ); + +}; + +} |