~ubuntu-branches/ubuntu/wily/tora/wily-proposed

« back to all changes in this revision

Viewing changes to help/tosimplequery.h

  • Committer: Bazaar Package Importer
  • Author(s): Albin Tonnerre
  • Date: 2007-05-29 13:13:36 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529131336-85ygaddivvmkd3xc
Tags: 1.3.21pre22-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules: call dh_iconcache
  - Remove g++ build dependency
* Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef TOSIMPLEQUERY_H
2
 
#define TOSIMPLEQUERY_H
3
 
 
4
 
#include "totool.h"
5
 
 
6
 
class toResultView;
7
 
class QLineEdit;
8
 
class toConnection;
9
 
 
10
 
class toSimpleQuery : public toToolWidget {
11
 
  Q_OBJECT
12
 
 
13
 
  toResultView *Result;
14
 
  QLineEdit *Statement;
15
 
private slots:
16
 
  void execute(void);
17
 
public:
18
 
  toSimpleQuery(QWidget *parent,toConnection &connection);
19
 
};
20
 
 
21
 
#endif