view/view.hpp
author Markus Bröker<broeker.markus@googlemail.com>
Sun, 10 Feb 2019 13:17:01 +0100
changeset 173 374a86886bc5
parent 81 6cfca66d2f01
permissions -rw-r--r--
LAST-DIGIT-BUG: INCREMENT before LF

#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