source: trunk/tools/assistant/lib/fulltextsearch/qsearchable.cpp@ 315

Last change on this file since 315 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 4.5 KB
Line 
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
16QT_BEGIN_NAMESPACE
17
18QCLuceneSearchablePrivate::QCLuceneSearchablePrivate()
19 : QSharedData()
20{
21 searchable = 0;
22 deleteCLuceneSearchable = true;
23}
24
25QCLuceneSearchablePrivate::QCLuceneSearchablePrivate(const QCLuceneSearchablePrivate &other)
26 : QSharedData()
27{
28 searchable = _CL_POINTER(other.searchable);
29}
30