UltraScan III
us_helpdaemon.h
Go to the documentation of this file.
1 #include <QtCore>
3 
5 
12 class US_HelpDaemon : public QObject
13 {
14  Q_OBJECT
15 
16  public:
23  US_HelpDaemon( const QString&, QObject* = 0 );
24 
25  public slots:
28  void show ( const QString& );
29 
33  void close( int, QProcess::ExitStatus );
34 
35  private:
36  static void debug( const QString& );
37  QProcess daemon;
38 };