#ifndef __LuceneKit_LCQuery_Parser__
#define __LuceneKit_LCQuery_Parser__
#include <Foundation/Foundation.h>
#include "LCQuery.h"
/** It parse a query string into LCQuery.
* Since there is no JavaCC for GNUstep,
* It is written from scratch to
* match Apache Lucene specification when it is done..
*/
@interface LCQueryParser: NSObject
+ (LCQuery *) parse: (NSString *) query;
+ (LCQuery *) parse: (NSString *) query defaultField: (NSString *) field;
@end
#endif /* __LuceneKit_LCQuery_Parser__ */
syntax highlighted by Code2HTML, v. 0.9.1