1 
2 /* Definition of class NSScriptObjectSpecifiers
3    Copyright (C) 2019 Free Software Foundation, Inc.
4 
5    By: Gregory John Casamento <greg.casamento@gmail.com>
6    Date: Sep 2019
7 
8    This file is part of the GNUstep Library.
9 
10    This library is free software; you can redistribute it and/or
11    modify it under the terms of the GNU Lesser General Public
12    License as published by the Free Software Foundation; either
13    version 2 of the License, or (at your option) any later version.
14 
15    This library is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    Lesser General Public License for more details.
19 
20    You should have received a copy of the GNU Lesser General Public
21    License along with this library; if not, write to the Free
22    Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23    Boston, MA 02110 USA.
24 */
25 
26 #ifndef _NSScriptObjectSpecifiers_h_GNUSTEP_BASE_INCLUDE
27 #define _NSScriptObjectSpecifiers_h_GNUSTEP_BASE_INCLUDE
28 
29 #include <Foundation/NSObject.h>
30 
31 #if	defined(__cplusplus)
32 extern "C" {
33 #endif
34 
35 #if OS_API_VERSION(MAC_OS_X_VERSION_10_0, GS_API_LATEST)
36 
37 @interface NSScriptObjectSpecifiers : NSObject
38 
39 @end
40 
41 #if	defined(__cplusplus)
42 }
43 #endif
44 
45 #endif	/* GS_API_MACOSX */
46 
47 #endif	/* _NSScriptObjectSpecifiers_h_GNUSTEP_BASE_INCLUDE */
48 
49