1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef QUEUE_H
4 #define QUEUE_H
5 
6 #include "aoxcommand.h"
7 
8 
9 class ShowQueue
10     : public AoxCommand
11 {
12 public:
13     ShowQueue( EStringList * );
14     void execute();
15 
16 private:
17     class Query * q;
18     class Query * qr;
19 };
20 
21 
22 class FlushQueue
23     : public AoxCommand
24 {
25 public:
26     FlushQueue( EStringList * );
27     void execute();
28 
29 private:
30     class Transaction * t;
31 };
32 
33 
34 #endif
35