SpikeStream Application Library  0.2
TruthTableView.h
Go to the documentation of this file.
00001 #ifndef TRUTHTABLEVIEW_H
00002 #define TRUTHTABLEVIEW_H
00003 
00004 //SpikeStream includes
00005 #include "TruthTableModel.h"
00006 
00007 //Qt includes
00008 #include <QTableView>
00009 #include <QAbstractTableModel>
00010 
00011 namespace spikestream {
00012 
00014     class TruthTableView : public QTableView {
00015                 Q_OBJECT
00016 
00017                 public:
00018                         TruthTableView(TruthTableModel* model);
00019                         ~TruthTableView();
00020 
00021                 private slots:
00022                         void resizeHeaders();
00023 
00024                 private:
00025                         //=====================  VARIABLES  =======================
00026                         TruthTableModel* truthTableModel;
00027 
00028     };
00029 
00030 }
00031 
00032 #endif//TRUTHTABLEVIEW_H
00033 
 All Classes Files Functions Variables Typedefs Friends Defines