view/view.hpp
author Markus Bröker <mbroeker@largo.dyndns.tv>
Fri, 05 Mar 2010 22:03:25 +0100
changeset 113 397270b5d21a
parent 81 6cfca66d2f01
permissions -rw-r--r--
sys/wait.h is the proper header, not wait.h committer: Markus Bröker <mbroeker@largo.homelinux.org>

#ifndef VIEW_HPP
#define VIEW_HPP

#include "ui_maindialog.h"

class TView : public QDialog, Ui_Dialog {
  Q_OBJECT
    public:
      TView (QWidget * parent = 0);
      virtual ~TView ();

    protected slots:
      void up ();
      void down ();

  private:
};

#endif