1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef ANONYMOUS_H
4 #define ANONYMOUS_H
5 
6 #include "mechanism.h"
7 
8 
9 class Anonymous
10     : public SaslMechanism
11 {
12 public:
13     Anonymous( EventHandler * );
14 
15     void parseResponse( const EString & );
16     void verify();
17 };
18 
19 
20 #endif
21