~ubuntu-branches/ubuntu/oneiric/arora/oneiric

« back to all changes in this revision

Viewing changes to src/opensearch/opensearchenginedelegate.h

  • Committer: Bazaar Package Importer
  • Author(s): Roderick B. Greening
  • Date: 2009-09-10 15:24:04 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090910152404-668k22ux3mfap6g0
Tags: 0.9.0-0ubuntu1
* New upstream release
* Update patches:
  - kubuntu_02_default_bookmarks.diff
* Remove patches:
  - kubuntu_04_startpage_spacing.diff (fixed upstream)
  - kubuntu_05_manpages.diff (fixed upstream)
  - kubuntu_07_adblock.diff (unstable/unsuitable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2009 Jakub Wieczorek <faw217@gmail.com>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
 * Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef OPENSEARCHENGINEDELEGATE_H
 
21
#define OPENSEARCHENGINEDELEGATE_H
 
22
 
 
23
#include <qnetworkaccessmanager.h>
 
24
#include <qnetworkrequest.h>
 
25
 
 
26
class OpenSearchEngineDelegate
 
27
{
 
28
public:
 
29
    OpenSearchEngineDelegate();
 
30
    virtual ~OpenSearchEngineDelegate();
 
31
 
 
32
    virtual void performSearchRequest(const QNetworkRequest &request,
 
33
                                      QNetworkAccessManager::Operation operation,
 
34
                                      const QByteArray &data) = 0;
 
35
};
 
36
 
 
37
#endif // OPENSEARCHENGINEDELEGATE_H