]> err.no Git - sope/blob - sope-gdl1/GDLAccess/EOQualifierScanner.h
removed subminor
[sope] / sope-gdl1 / GDLAccess / EOQualifierScanner.h
1 /* 
2    EOQualifierScanner.h
3
4    Copyright (C) 1996 Free Software Foundation, Inc.
5
6    Author: Ovidiu Predescu <ovidiu@bx.logicnet.ro>
7            Helge Hess <helge.hess@mdlink.de>
8    Date:   September 1996
9            November  1999
10
11    This file is part of the GNUstep Database Library.
12
13    This library is free software; you can redistribute it and/or
14    modify it under the terms of the GNU Library General Public
15    License as published by the Free Software Foundation; either
16    version 2 of the License, or (at your option) any later version.
17
18    This library is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21    Library General Public License for more details.
22
23    You should have received a copy of the GNU Library General Public
24    License along with this library; see the file COPYING.LIB.
25    If not, write to the Free Software Foundation,
26    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28 // $Id: EOQualifierScanner.h 1 2004-08-20 10:38:46Z znek $
29
30 #ifndef __EOAccess_EOQualifierScanner_H__
31 #define __EOAccess_EOQualifierScanner_H__
32
33 #if !LIB_FOUNDATION_LIBRARY
34 #  import "DefaultScannerHandler.h"
35 #else
36 #  import <extensions/DefaultScannerHandler.h>
37 #endif
38
39 @class EOEntity;
40
41 @interface EOQualifierScannerHandler : DefaultScannerHandler
42 {
43   EOEntity *entity;
44 }
45
46 - (void)setEntity:(EOEntity *)entity;
47
48 @end
49
50 @interface EOQualifierEnumScannerHandler : DefaultEnumScannerHandler
51 {
52   EOEntity *entity;
53 }
54
55 - (void)setEntity:(EOEntity *)entity;
56
57 @end
58
59 #endif /* __EOAccess_EOQualifierScanner_H__ */