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