summaryrefslogtreecommitdiff
path: root/l10ntools/inc/l10ntools/file.hxx
blob: 9b90c2766500315b2f66a8d0a94d21be609d5353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* -*- 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 sFile );
    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: */