~ubuntu-branches/ubuntu/saucy/minitube/saucy-proposed

« back to all changes in this revision

Viewing changes to src/channelsuggest.h

  • Committer: Bazaar Package Importer
  • Author(s): Jakob Haufe
  • Date: 2011-04-03 20:38:04 UTC
  • mfrom: (2.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110403203804-0c51jazcjgb86hzt
Tags: 1.4.1-1
* New upstream version
* Disable update check, makes no sense for a packaged version (Closes:
  #619941)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CHANNELSUGGEST_H
 
2
#define CHANNELSUGGEST_H
 
3
 
 
4
#include <QtCore>
 
5
 
 
6
#include "suggester.h"
 
7
 
 
8
class ChannelSuggest : public Suggester {
 
9
 
 
10
    Q_OBJECT
 
11
 
 
12
public:
 
13
    ChannelSuggest(QObject *parent = 0);
 
14
    void suggest(QString query);
 
15
 
 
16
signals:
 
17
    void ready(QStringList);
 
18
 
 
19
private slots:
 
20
    void handleNetworkData(QByteArray response);
 
21
 
 
22
};
 
23
 
 
24
#endif // CHANNELSUGGEST_H