view/view.hpp
author Markus Bröker <mbroeker@volpe.spectre.org>
Wed, 18 Aug 2010 16:17:00 +0200
changeset 142 d6bce20b455e
parent 81 6cfca66d2f01
permissions -rw-r--r--
asm/decimal.c: provide a default wordsize

#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