ProteoWizard
MascotReader.hpp
Go to the documentation of this file.
1 //
2 // $Id: MascotReader.hpp 2820 2011-06-27 22:51:16Z chambm $
3 //
4 //
5 // Origional author: Robert Burke <robert.burke@proteowizard.org>
6 //
7 // Copyright 2010 Spielberg Family Center for Applied Proteomics
8 // University of Southern California, Los Angeles, California 90033
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 // http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 
23 
24 #ifndef _MZID_MASCOTREADER_HPP_
25 #define _MZID_MASCOTREADER_HPP_
26 
29 
30 namespace pwiz {
31 namespace identdata {
32 
34 {
35 public:
36  MascotReader();
38 
39  virtual std::string identify(const std::string& filename,
40  const std::string& head) const;
41 
42  virtual void read(const std::string& filename,
43  const std::string& head,
44  IdentData& result,
45  const Reader::Config&) const;
46 
47  virtual void read(const std::string& filename,
48  const std::string& head,
49  IdentDataPtr& result,
50  const Reader::Config&) const;
51 
52  virtual void read(const std::string& filename,
53  const std::string& head,
54  std::vector<IdentDataPtr>& results,
55  const Reader::Config&) const;
56 
57  virtual const char *getType() const;
58 
59 private:
60  class Impl;
61 
62  Impl* pimpl;
63 };
64 
65 } // namespace pwiz
66 } // namespace identdata
67 
68 #endif // _MZID_MASCOTREADER_HPP_