Lucene++ - a full-featured, c++ search engine
API Documentation


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
FSLockFactory.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2011 Alan Wright. All rights reserved.
3 // Distributable under the terms of either the Apache License (Version 2.0)
4 // or the GNU Lesser General Public License.
6 
7 #ifndef FSLOCKFACTORY_H
8 #define FSLOCKFACTORY_H
9 
10 #include "LockFactory.h"
11 
12 namespace Lucene
13 {
15  class LPPAPI FSLockFactory : public LockFactory
16  {
17  protected:
18  FSLockFactory();
19 
20  public:
21  virtual ~FSLockFactory();
22 
24 
25  protected:
27  String lockDir;
28 
29  public:
34  void setLockDir(const String& lockDir);
35 
37  String getLockDir();
38  };
39 }
40 
41 #endif

clucene.sourceforge.net