SpikeStream Application Library
0.2
|
00001 #ifndef TRUTHTABLEDIALOG_H 00002 #define TRUTHTABLEDIALOG_H 00003 00004 //SpikeStream includes 00005 #include "TruthTableModel.h" 00006 using namespace spikestream; 00007 00008 //Qt includes 00009 #include <QDialog> 00010 00011 namespace spikestream { 00012 00014 class TruthTableDialog : public QDialog { 00015 Q_OBJECT 00016 00017 public: 00018 TruthTableDialog(QWidget* parent=0); 00019 ~TruthTableDialog(); 00020 void show(unsigned int neuronID); 00021 00022 00023 private slots: 00024 void cancelButtonPressed(); 00025 void okButtonPressed(); 00026 00027 00028 private: 00029 //======================== VARIABLES ======================== 00030 TruthTableModel* truthTableModel; 00031 00032 }; 00033 00034 } 00035 00036 #endif//TRUTHTABLEDIALOG_H 00037