Added qPCR Validation design code
[htsworkflow.git] / htswanalysis / src / ValidationDesign / peak.h
1 /*
2  *  peak.h
3  *  PeakLocator
4  *
5  *  Created by Alan You on 8/11/08.
6  *  Copyright 2008 Hudson Alpha. All rights reserved.
7  *
8  */
9 #ifndef PEAK_H
10 #define PEAK_H
11  
12 #include <iostream>
13 #include <fstream>
14 #include <sstream>
15 #include <string>
16 #include <memory.h>
17
18  
19 using namespace std;
20
21 class Peak
22 {
23 public:
24         Peak();
25         Peak(string line);
26         Peak(const Peak& p);
27         ~Peak();
28         
29         bool operator<(const Peak& that) const;
30         bool operator>(const Peak& that) const;
31         Peak& operator=(const Peak& that);
32 };
33
34 #endif