# HG changeset patch # User Jeandet Alexis # Date 2014-02-27 13:43:23 # Node ID 14ad7466d71c81c5599477b391c4a67b10b8a547 # Parent b8a0812bd22fef48bb2e847a288a86a7271cd576 Some cleaning. diff --git a/SocExplorer_Plugins.pro b/SocExplorer_Plugins.pro --- a/SocExplorer_Plugins.pro +++ b/SocExplorer_Plugins.pro @@ -8,5 +8,6 @@ SUBDIRS = \ APBUARTPLUGIN \ dsu3plugin \ genericrwplugin \ - memctrlrplugin \ - spwplugin + memctrlrplugin + +unix:SUBDIRS += spwplugin diff --git a/genericrwplugin/genericrwplugin.pro b/genericrwplugin/genericrwplugin.pro --- a/genericrwplugin/genericrwplugin.pro +++ b/genericrwplugin/genericrwplugin.pro @@ -33,18 +33,12 @@ INCLUDEPATH += \ HEADERS += \ genericrwplugin.h \ genericrwpluginui.h \ - rw_task.h \ - tasklist.h \ - taskeditor.h \ memeditor.h \ genericrwpluginpywrapper.h SOURCES += \ genericrwplugin.cpp \ genericrwpluginui.cpp \ - rw_task.cpp \ - tasklist.cpp \ - taskeditor.cpp \ memeditor.cpp \ genericrwpluginpywrapper.cpp diff --git a/genericrwplugin/genericrwpluginui.h b/genericrwplugin/genericrwpluginui.h --- a/genericrwplugin/genericrwpluginui.h +++ b/genericrwplugin/genericrwpluginui.h @@ -26,7 +26,6 @@ #include #include #include -#include "tasklist.h" #include "memeditor.h" #include diff --git a/genericrwplugin/rw_task.cpp b/genericrwplugin/rw_task.cpp deleted file mode 100644 --- a/genericrwplugin/rw_task.cpp +++ /dev/null @@ -1,26 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the LPPMON Software --- Copyright (C) 2011, Laboratory of Plasmas Physic - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 3 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@lpp.polytechnique.fr -----------------------------------------------------------------------------*/ -#include "rw_task.h" - -RW_Task::RW_Task() -{ -} diff --git a/genericrwplugin/rw_task.h b/genericrwplugin/rw_task.h deleted file mode 100644 --- a/genericrwplugin/rw_task.h +++ /dev/null @@ -1,43 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the LPPMON Software --- Copyright (C) 2011, Laboratory of Plasmas Physic - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 3 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@lpp.polytechnique.fr -----------------------------------------------------------------------------*/ -#ifndef RW_TASK_H -#define RW_TASK_H -#include - - -typedef enum {readTask,writeTask}taskTypeT; - -class RW_Task -{ -public: - RW_Task(); - taskTypeT taskType; - -private: - QString dataStr; - unsigned int* data; - unsigned int length; - unsigned int address; - -}; - -#endif // RW_TASK_H diff --git a/genericrwplugin/taskeditor.cpp b/genericrwplugin/taskeditor.cpp deleted file mode 100644 --- a/genericrwplugin/taskeditor.cpp +++ /dev/null @@ -1,27 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the LPPMON Software --- Copyright (C) 2011, Laboratory of Plasmas Physic - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 3 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@lpp.polytechnique.fr -----------------------------------------------------------------------------*/ -#include "taskeditor.h" - -taskEditor::taskEditor(QWidget *parent) : - QWidget(parent) -{ -} diff --git a/genericrwplugin/taskeditor.h b/genericrwplugin/taskeditor.h deleted file mode 100644 --- a/genericrwplugin/taskeditor.h +++ /dev/null @@ -1,39 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the LPPMON Software --- Copyright (C) 2011, Laboratory of Plasmas Physic - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 3 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@lpp.polytechnique.fr -----------------------------------------------------------------------------*/ -#ifndef TASKEDITOR_H -#define TASKEDITOR_H - -#include - -class taskEditor : public QWidget -{ - Q_OBJECT -public: - explicit taskEditor(QWidget *parent = 0); - -signals: - -public slots: - -}; - -#endif // TASKEDITOR_H diff --git a/genericrwplugin/tasklist.cpp b/genericrwplugin/tasklist.cpp deleted file mode 100644 --- a/genericrwplugin/tasklist.cpp +++ /dev/null @@ -1,28 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the LPPMON Software --- Copyright (C) 2011, Laboratory of Plasmas Physic - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 3 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@lpp.polytechnique.fr -----------------------------------------------------------------------------*/ - -#include "tasklist.h" - -tasklist::tasklist(QWidget *parent) : - QTableWidget(parent) -{ -} diff --git a/genericrwplugin/tasklist.h b/genericrwplugin/tasklist.h deleted file mode 100644 --- a/genericrwplugin/tasklist.h +++ /dev/null @@ -1,40 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the LPPMON Software --- Copyright (C) 2011, Laboratory of Plasmas Physic - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 3 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@lpp.polytechnique.fr -----------------------------------------------------------------------------*/ -#ifndef TASKLIST_H -#define TASKLIST_H - -#include -#include - -class tasklist : public QTableWidget -{ - Q_OBJECT -public: - explicit tasklist(QWidget *parent = 0); - -signals: - -public slots: - -}; - -#endif // TASKLIST_H