1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the QCLucene library and is distributable under
|
---|
7 | ** the terms of the LGPL license as specified in the license.txt file.
|
---|
8 | **
|
---|
9 | ****************************************************************************/
|
---|
10 |
|
---|
11 | #include "qsearchable_p.h"
|
---|
12 |
|
---|
13 | #include <CLucene.h>
|
---|
14 | #include <CLucene/search/SearchHeader.h>
|
---|
15 |
|
---|
16 | QT_BEGIN_NAMESPACE
|
---|
17 |
|
---|
18 | QCLuceneSearchablePrivate::QCLuceneSearchablePrivate()
|
---|
19 | : QSharedData()
|
---|
20 | {
|
---|
21 | searchable = 0;
|
---|
22 | deleteCLuceneSearchable = true;
|
---|
23 | }
|
---|
24 |
|
---|
25 | QCLuceneSearchablePrivate::QCLuceneSearchablePrivate(const QCLuceneSearchablePrivate &other)
|
---|
26 | : QSharedData()
|
---|
27 | {
|
---|
28 | searchable = _CL_POINTER(other.searchable);
|
---|
29 | }
|
---|
30 |
|
---|
|
---|