From 5d56f9dc48a54969afc0b84f15f9e840077f19c0 Mon Sep 17 00:00:00 2001 From: Olivier Langella <Olivier.Langella@moulon.inra.fr> Date: Thu, 23 Mar 2017 14:24:46 +0100 Subject: [PATCH] new protein store object --- src/utils/proteinstore.cpp | 30 +++++++++++++++++++++++++++++ src/utils/proteinstore.h | 39 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 src/utils/proteinstore.cpp create mode 100644 src/utils/proteinstore.h diff --git a/src/utils/proteinstore.cpp b/src/utils/proteinstore.cpp new file mode 100644 index 000000000..ba8ff7df3 --- /dev/null +++ b/src/utils/proteinstore.cpp @@ -0,0 +1,30 @@ +/** + * \file utils/proteinstore.cpp + * \date 23/3/2017 + * \author Olivier Langella + * \brief store unique version of proteins + */ + +/******************************************************************************* +* Copyright (c) 2017 Olivier Langella <Olivier.Langella@u-psud.fr>. +* +* This file is part of XTPcpp. +* +* XTPcpp 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. +* +* XTPcpp 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 XTPcpp. If not, see <http://www.gnu.org/licenses/>. +* +* Contributors: +* Olivier Langella <Olivier.Langella@u-psud.fr> - initial API and implementation +******************************************************************************/ + +#include "proteinstore.h" diff --git a/src/utils/proteinstore.h b/src/utils/proteinstore.h new file mode 100644 index 000000000..eec6afdb6 --- /dev/null +++ b/src/utils/proteinstore.h @@ -0,0 +1,39 @@ +/** + * \file utils/proteinstore.h + * \date 23/3/2017 + * \author Olivier Langella + * \brief store unique version of proteins + */ + + +/******************************************************************************* +* Copyright (c) 2017 Olivier Langella <Olivier.Langella@u-psud.fr>. +* +* This file is part of XTPcpp. +* +* XTPcpp 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. +* +* XTPcpp 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 XTPcpp. If not, see <http://www.gnu.org/licenses/>. +* +* Contributors: +* Olivier Langella <Olivier.Langella@u-psud.fr> - initial API and implementation +******************************************************************************/ + + +#ifndef PROTEINSTORE_H +#define PROTEINSTORE_H + +class ProteinStore +{ +}; + +#endif // PROTEINSTORE_H -- GitLab