#ifndef DICOM_H #define DICOM_H /*! * \file dicom.h * \brief Main class for the example application * \author Alexandre Abadie * \version 0.1 */ #include #include "ui_dicom.h" class Dicom : public QMainWindow { Q_OBJECT private: public: Ui::Dicom ui; Dicom( QWidget *parent = 0 ); ~Dicom(); public slots: void openDicomdir(); void exportSerie(); void preferences(); }; #endif