sogo/SoObjects/SOGo/NSArray+Utilities.h
Wolfgang Sourdeau 2ab0c85485 Monotone-Parent: 69c9141518bd7929013517efa91e7a4d18ce64d5
Monotone-Revision: 240c1be6b26b2d277b63045d20ee3e4860aba1f8

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-02-08T16:30:07
Monotone-Branch: ca.inverse.sogo
2007-02-08 16:30:07 +00:00

43 lines
1.3 KiB
Objective-C

/* NSArray+Utilities.h - this file is part of SOGo
*
* Copyright (C) 2006 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 NSARRAY_UTILITIES_H
#define NSARRAY_UTILITIES_H
#import <Foundation/NSArray.h>
@class NSString;
@interface NSArray (SOGoArrayUtilities)
- (NSArray *) stringsWithFormat: (NSString *) format;
#ifdef GNUSTEP_BASE_LIBRARY
- (void) makeObjectsPerform: (SEL) selector
withObject: (id) object1
withObject: (id) object2;
#endif
@end
#endif /* NSARRAY_UTILITIES_H */