Skip to content
Snippets Groups Projects
Commit 7632e463 authored by Langella Olivier's avatar Langella Olivier
Browse files

libpappsomspp (0.8.9-1~buster+1) buster

parent 6b32f58b
No related branches found
No related tags found
No related merge requests found
......@@ -13,10 +13,10 @@ project(libpappsomspp)
set(PAPPSOMSPP_VERSION_MAJOR "0")
set(PAPPSOMSPP_VERSION_MINOR "8")
set(PAPPSOMSPP_VERSION_PATCH "8")
set(PAPPSOMSPP_VERSION_PATCH "9")
set(PAPPSOMSPP_VERSION "${PAPPSOMSPP_VERSION_MAJOR}.${PAPPSOMSPP_VERSION_MINOR}.${PAPPSOMSPP_VERSION_PATCH}")
# This *NUMERICAL* VERSION is parseable by the makeOrigTarball script.
set(VERSION 0.8.8)
set(VERSION ${PAPPSOMSPP_VERSION})
# Command to enable debug and tests
# cmake -DCMAKE_BUILD_TYPE=Debug -DMAKE_TEST=1 -DUSEPAPPSOTREE=0 ..
......
libpappsomspp (0.8.9-1~buster+1) buster; urgency=medium
* rewritten TimsTOF mz calibration API
* new FilterNameInterface to build Filter with strings
* Thomas Renne added in the copyright debian notice
-- Olivier Langella <olivier.langella@u-psud.fr> Tue, 17 Nov 2020 13:31:57 +0100
libpappsomspp (0.8.8-1~buster+1) buster; urgency=medium
* autoremove directory created for tandem run wrapper
......
......@@ -40,6 +40,7 @@ class PMSPP_LIB_DECL FilterInterface
{
public:
virtual Trace &filter(Trace &data_points) const = 0;
virtual ~FilterInterface(){};
};
typedef std::shared_ptr<FilterInterface> FilterInterfaceSPtr;
......@@ -55,5 +56,8 @@ class PMSPP_LIB_DECL MassSpectrumFilterInterface
{
public:
virtual MassSpectrum &filter(MassSpectrum &spectrum) const = 0;
virtual ~MassSpectrumFilterInterface(){};
};
} // namespace pappso
......@@ -42,6 +42,8 @@ class PMSPP_LIB_DECL FilterNameInterface : public FilterInterface
public:
virtual QString toString() const = 0;
virtual ~FilterNameInterface(){};
protected:
/** @brief build this filer using a string
* @param strBuildParams a string coding the filter and its parameters
......
......@@ -48,7 +48,7 @@ main()
{
cout << endl << "..:: readMgf ::.." << endl;
bool refine_spectrum_synthesis = false;
//bool refine_spectrum_synthesis = false;
MassSpectrum spectrum_simple =
readMgf(QString(CMAKE_SOURCE_DIR)
......
......@@ -42,7 +42,7 @@ using namespace std;
int
main(int argc, char *argv[])
main(int argc [[maybe_unused]], char *argv[] [[maybe_unused]])
{
// QCoreApplication a(argc, argv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment