view/view.hpp
author Markus Bröker<broeker.markus@googlemail.com>
Sun, 22 Oct 2017 22:55:27 +0200
changeset 172 43ae72f88d06
parent 81 6cfca66d2f01
permissions -rw-r--r--
2er Komplement und integerToString

#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