ProteoWizard
ChromatogramList_mz5.hpp
Go to the documentation of this file.
1 //
2 // $Id: ChromatogramList_mz5.hpp 2811 2011-06-23 20:44:29Z chambm $
3 //
4 //
5 // Original authors: Mathias Wilhelm <mw@wilhelmonline.com>
6 // Marc Kirchner <mail@marc-kirchner.de>
7 //
8 // Copyright 2011 Proteomics Center
9 // Children's Hospital Boston, Boston, MA 02135
10 //
11 // Licensed under the Apache License, Version 2.0 (the "License");
12 // you may not use this file except in compliance with the License.
13 // You may obtain a copy of the License at
14 //
15 // http://www.apache.org/licenses/LICENSE-2.0
16 //
17 // Unless required by applicable law or agreed to in writing, software
18 // distributed under the License is distributed on an "AS IS" BASIS,
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 // See the License for the specific language governing permissions and
21 // limitations under the License.
22 //
23 
24 
25 #ifndef _CHROMATOGRAMLIST_MZ5_HPP_
26 #define _CHROMATOGRAMLIST_MZ5_HPP_
27 
28 
29 #include "ChromatogramListBase.hpp"
33 #include "mz5/Connection_mz5.hpp"
34 
35 
36 namespace pwiz {
37 namespace msdata {
38 
39 
40 /// implementation of ChromatogramList, backed by an mz5 file
42 {
43 public:
44 
45  /**
46  * Creates a chromatogramListPtr.
47  * @param readPtr helper class to read mz5 files
48  * @param connectionptr connection to an mz5 file
49  * @param msd MSData file
50  */
51  static ChromatogramListPtr create(boost::shared_ptr<mz5::ReferenceRead_mz5> readPtr,
52  boost::shared_ptr<mz5::Connection_mz5> connectionPtr,
53  const MSData& msd);
54 
55  /**
56  * Destructor.
57  */
58  virtual ~ChromatogramList_mz5();
59 };
60 
61 
62 } // namespace msdata
63 } // namespace pwiz
64 
65 
66 #endif // _CHROMATOGRAMLIST_MZ5_HPP_