1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef ASCIICASEMAP_H
4 #define ASCIICASEMAP_H
5 
6 #include "collation.h"
7 
8 
9 class AsciiCasemap
10     : public Collation
11 {
12 public:
13     AsciiCasemap();
14 
15     bool valid( const UString & ) const;
16     bool equals( const UString &, const UString & ) const;
17     bool contains( const UString &, const UString & ) const;
18     int compare( const UString &, const UString & ) const;
19 };
20 
21 
22 #endif
23