view/view.hpp
author Markus Bröker <mbroeker@volpe.spectre.org>
Wed, 18 Aug 2010 16:15:18 +0200
changeset 141 0b5befeb361e
parent 81 6cfca66d2f01
permissions -rw-r--r--
getbits: calculates the proper value but showed a different one

#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