~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to source/METADATA/ScanWindow.C

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2012-11-12 15:58:12 UTC
  • Revision ID: package-import@ubuntu.com-20121112155812-vr15wtg9b50cuesg
Tags: upstream-1.9.0
ImportĀ upstreamĀ versionĀ 1.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- mode: C++; tab-width: 2; -*-s
 
2
// vi: set ts=2:
 
3
//
 
4
// --------------------------------------------------------------------------
 
5
//                   OpenMS Mass Spectrometry Framework
 
6
// --------------------------------------------------------------------------
 
7
//  Copyright (C) 2003-2011 -- Oliver Kohlbacher, Knut Reinert
 
8
//
 
9
//  This library is free software; you can redistribute it and/or
 
10
//  modify it under the terms of the GNU Lesser General Public
 
11
//  License as published by the Free Software Foundation; either
 
12
//  version 2.1 of the License, or (at your option) any later version.
 
13
//
 
14
//  This library is distributed in the hope that it will be useful,
 
15
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
//  Lesser General Public License for more details.
 
18
//
 
19
//  You should have received a copy of the GNU Lesser General Public
 
20
//  License along with this library; if not, write to the Free Software
 
21
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
22
//
 
23
// --------------------------------------------------------------------------
 
24
// $Maintainer: Andreas Bertsch $
 
25
// $Authors: Marc Sturm $
 
26
// --------------------------------------------------------------------------
 
27
 
 
28
#include <OpenMS/METADATA/ScanWindow.h>
 
29
 
 
30
using namespace std;
 
31
 
 
32
namespace OpenMS
 
33
{
 
34
        //--------------------------- ScanWindow ----------------------------
 
35
        ScanWindow::ScanWindow()
 
36
                : MetaInfoInterface(),
 
37
                        begin(0.0),
 
38
                        end(0.0)
 
39
        {
 
40
        }
 
41
        
 
42
        ScanWindow::ScanWindow(const ScanWindow& source)
 
43
                : MetaInfoInterface(source),
 
44
                        begin(source.begin),
 
45
                  end(source.end)
 
46
        {
 
47
        }
 
48
          
 
49
        bool ScanWindow::operator==(const ScanWindow& source) const
 
50
        {
 
51
                return
 
52
                        MetaInfoInterface::operator==(source) &&
 
53
                        begin == source.begin &&
 
54
                        end == source.end;
 
55
        }
 
56
 
 
57
        bool ScanWindow::operator!=(const ScanWindow& source) const
 
58
        {
 
59
                return !(operator==(source));
 
60
        }
 
61
 
 
62
        ScanWindow& ScanWindow::operator=(const ScanWindow& source)
 
63
        {
 
64
                if (&source == this) return *this;
 
65
                        
 
66
                MetaInfoInterface::operator=(source);
 
67
                begin = source.begin;
 
68
                end = source.end;
 
69
                
 
70
                return *this;
 
71
        }
 
72
 
 
73
}
 
74