~ubuntu-branches/ubuntu/lucid/kdepim-runtime/lucid

« back to all changes in this revision

Viewing changes to agents/nepomukfeeder/selectsqarqlbuilder.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-03 15:38:40 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20091203153840-x5fxfsfby0czyqu6
Tags: 4:4.3.80-0ubuntu1
* New upstream beta release:
  - Refresh all patches
  - Bump build-depend versions
  - Remove build-depend on libknotificationitem-dev, it's part of
    kdelibs5-dev now
  - Add build-depend on shared-desktop-ontologies for nepomuk support
  - Add build-depend on libstreamanalyzer-dev for strigi support
  - Add build-depend on libx11-dev to prevent FTBFS
  - Update various .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2009 Volker Krause <vkrause@kde.org>
 
3
 
 
4
    This library is free software; you can redistribute it and/or modify it
 
5
    under the terms of the GNU Library General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or (at your
 
7
    option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful, but WITHOUT
 
10
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
11
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
 
12
    License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Library General Public License
 
15
    along with this library; see the file COPYING.LIB.  If not, write to the
 
16
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
17
    02110-1301, USA.
 
18
*/
 
19
 
 
20
#ifndef SELECTSPARQLBUILDER_H
 
21
#define SELECTSPARQLBUILDER_H
 
22
 
 
23
#include "sparqlbuilder.h"
 
24
 
 
25
#include <QStringList>
 
26
 
 
27
/** SPARQL query builder for SELECT queries. */
 
28
class SelectSparqlBuilder : public SparqlBuilder
 
29
{
 
30
  public:
 
31
    SelectSparqlBuilder() : m_distinct( false ) {}
 
32
    void setDistinct( bool distinct ) { m_distinct = distinct; }
 
33
    void addQueryVariable( const QString &variable ) { m_variables.append( variable ); }
 
34
 
 
35
    /** Returns the SPARQL query. */
 
36
    QString query() const;
 
37
 
 
38
  private:
 
39
    QStringList m_variables;
 
40
    bool m_distinct;
 
41
};
 
42
 
 
43
#endif