1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef RIGHTS_H
4 #define RIGHTS_H
5 
6 #include "aoxcommand.h"
7 
8 
9 class ListRights
10     : public AoxCommand
11 {
12 public:
13     ListRights( EStringList * );
14     void execute();
15 
16 private:
17     class ListRightsData * d;
18     EString describe( const EString & );
19 };
20 
21 
22 class SetAcl
23     : public AoxCommand
24 {
25 public:
26     SetAcl( EStringList * );
27     void execute();
28 
29 private:
30     class SetAclData * d;
31 };
32 
33 
34 #endif
35