1 /*
2  * Defines.h created by probert on 2003-06-29 16:58:59 +0000
3  *
4  * Project ImageViewer
5  *
6  * Created with ProjectCenter - http://www.gnustep.org
7  *
8  * $Id: Defines.h,v 1.1 2003/06/29 17:06:37 probert Exp $
9  */
10 
11 #ifndef _DEFINES_H_
12 #define _DEFINES_H_
13 
14 #include <Foundation/Foundation.h>
15 
16 #ifndef GNUSTEP_BASE_VERSION
17 #define NSLocalizedString(key, comment) \
18     [[NSBundle mainBundle] localizedStringForKey:(key) value:@"" table:nil]
19 
20 #define _(X) NSLocalizedString (X, @"")
21 #endif
22 
23 #endif // _DEFINES_H_
24 
25