ProteoWizard
ChromatogramListWrapper.hpp
Go to the documentation of this file.
1 //
2 // $Id: ChromatogramListWrapper.hpp 1191 2009-08-14 19:33:05Z chambm $
3 //
4 //
5 // Original author: Eric Purser <Eric.Purser .@. Vanderbilt.edu>
6 //
7 
8 // Copyright 2008 Spielberg Family Center for Applied Proteomics
9 // Cedars-Sinai Medical Center, Los Angeles, California 90048
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 _CHROMATOGRAMLISTWRAPPER_HPP_
26 #define _CHROMATOGRAMLISTWRAPPER_HPP_
27 
28 
30 #include <stdexcept>
31 
32 
33 namespace pwiz {
34 namespace analysis {
35 
36 
37 /// Inheritable pass-through implementation for wrapping a ChromatogramList
39 {
40  public:
41 
43  : inner_(inner)
44  {
45  if (!inner.get()) throw std::runtime_error("[ChromatogramListWrapper] Null ChromatogramListPtr.");
46  }
47 
48  static bool accept(const msdata::ChromatogramListPtr& inner) {return true;}
49 
50  virtual size_t size() const {return inner_->size();}
51  virtual bool empty() const {return inner_->empty();}
52  virtual const msdata::ChromatogramIdentity& chromatogramIdentity(size_t index) const {return inner_->chromatogramIdentity(index);}
53  virtual size_t find(const std::string& id) const {return inner_->find(id);}
54  virtual msdata::ChromatogramPtr chromatogram(size_t index, bool getBinaryData = false) const {return inner_->chromatogram(index, getBinaryData);}
55 
56  protected:
57 
59 };
60 
61 
62 } // namespace analysis
63 } // namespace pwiz
64 
65 
66 #endif // _CHROMATOGRAMLISTWRAPPER_HPP_
67