~ubuntu-branches/ubuntu/feisty/kaptain/feisty

« back to all changes in this revision

Viewing changes to captain/kaptain.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2003-08-02 14:53:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20030802145333-o50ad69xa37dyl8m
Tags: 1:0.71-1.1
* NMU
* Fix build-depends.  Closes: #197848

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#ifndef KAPTAIN_H
3
 
#define KAPTAIN_H
4
 
 
5
 
#ifdef HAVE_CONFIG_H
6
 
#include <config.h>
7
 
#endif
8
 
 
9
 
#include <qdialog.h>
10
 
class KRule;
11
 
 
12
 
class Kaptain : public QDialog
13
 
{
14
 
 Q_OBJECT
15
 
 public:
16
 
  /** construtor */
17
 
  Kaptain(KRule *, QWidget* parent=0, const char *name=0);
18
 
  /** destructor */
19
 
  ~Kaptain();
20
 
};
21
 
 
22
 
#endif