]> err.no Git - sope/blob - sope-mime/NGMime/common.h
renamed packages as discussed in the developer list
[sope] / sope-mime / NGMime / common.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #ifndef __NGMime_common_H__
24 #define __NGMime_common_H__
25
26 // common include files
27
28 #import <Foundation/Foundation.h>
29
30 #if LIB_FOUNDATION_LIBRARY
31 #  import <Foundation/exceptions/GeneralExceptions.h>
32 #elif NeXT_Foundation_LIBRARY || APPLE_Foundation_LIBRARY
33 #  import <NGExtensions/NGObjectMacros.h>
34 #  import <NGExtensions/NSString+Ext.h>
35 #endif
36
37 #include <NGExtensions/NGExtensions.h>
38 #include <NGStreams/NGStreams.h>
39
40 #include "NGMimeType.h"
41
42 #if !GNU_RUNTIME
43 #  ifndef sel_eq
44 #    define sel_eq(__A__, __B__) (__A__==__B__)
45 #  endif
46 #endif
47
48 @interface NSObject(OSXHacks)
49 - (void)subclassResponsibility:(SEL)_acmd;
50 - (void)notImplemented:(SEL)_acmd;
51 @end
52
53 #endif /* __NGMime_common_H__ */