1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef ANONYMISE_H
4 #define ANONYMISE_H
5 
6 #include "aoxcommand.h"
7 
8 
9 class Anonymise
10     : public AoxCommand
11 {
12 public:
13     Anonymise( EStringList * );
14     void execute();
15 };
16 
17 
18 #endif
19