xref: /trunk/main/l10ntools/inc/l10ntools/file.hxx (revision cdf0e10c)
1 #include "rtl/ustring.hxx"
2 
3 namespace transex
4 {
5 
6 class File
7 {
8     private:
9     rtl::OUString sFileName;
10     rtl::OUString sFullName;
11 
12     public:
13     rtl::OUString getFileName(){ return sFileName; }
14     rtl::OUString getFullName(){ return sFullName; }
15 
16     File( const rtl::OUString sFile );
17     File( const rtl::OUString sFullName , const rtl::OUString sFile );
18 
19     static bool lessFile ( const File& rKey1, const File& rKey2 );
20 
21 };
22 
23 }
24