sogo/UI/Common/UIxFolderActions.h
Wolfgang Sourdeau 4509a3a7b4 Monotone-Parent: 1cdfe706bc85c7be9cf57e45cb80919dbba2e825
Monotone-Revision: 283329aac9fb69692301c1e7d74db0ce8e6fc222

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-03-27T18:10:01
Monotone-Branch: ca.inverse.sogo
2007-03-27 18:10:01 +00:00

52 lines
1.4 KiB
Objective-C

/* UIxFolderActions.h - this file is part of SOGo
*
* Copyright (C) 2007 Inverse groupe conseil
*
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef UIXFOLDERACTIONS_H
#define UIXFOLDERACTIONS_H
#import <NGObjWeb/WODirectAction.h>
@class SOGoFolder;
@class NSString;
@class NSUserDefaults;
@class NSMutableString;
@class NSMutableDictionary;
@interface UIxFolderActions : WODirectAction
{
SOGoFolder *clientObject;
AgenorUserManager *um;
NSUserDefaults *ud;
NSString *owner;
NSString *login;
NSString *baseFolder;
NSMutableString *subscriptionPointer;
NSMutableDictionary *moduleSettings;
}
- (WOResponse *) subscribeAction;
- (WOResponse *) unsubscribeAction;
@end
#endif /* UIXFOLDERACTIONS_H */