SpikeStream Application Library  0.2
NeuronGroupSelectionDialog.h
Go to the documentation of this file.
00001 #ifndef NEURONGROUPSELECTIONDIALOG_H
00002 #define NEURONGROUPSELECTIONDIALOG_H
00003 
00004 //SpikeStream includes
00005 #include "Network.h"
00006 #include "NeuronGroupSelectionModel.h"
00007 
00008 //Qt includes
00009 #include <QDialog>
00010 
00011 namespace spikestream {
00012 
00015         class NeuronGroupSelectionDialog : public QDialog {
00016                 Q_OBJECT
00017 
00018                 public:
00019                         NeuronGroupSelectionDialog(Network* network, QWidget* parent = 0);
00020                         ~NeuronGroupSelectionDialog();
00021                         QList<NeuronGroup*> getNeuronGroups();
00022 
00023                 private:
00024                         //=================  VARIABLES  ===================
00025                         NeuronGroupSelectionModel* neurGrpSelectionModel;
00026 
00027         };
00028 
00029 }
00030 
00031 
00032 #endif//NEURONGROUPSELECTIONDIALOG_H
 All Classes Files Functions Variables Typedefs Friends Defines