ProteoWizard
References.hpp
Go to the documentation of this file.
1 //
2 // $Id: References.hpp 1605 2009-12-09 23:50:27Z chambm $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2009 Vanderbilt University - Nashville, TN 37232
8 //
9 // Licensed under the Apache License, Version 2.0 (the "License");
10 // you may not use this file except in compliance with the License.
11 // You may obtain a copy of the License at
12 //
13 // http://www.apache.org/licenses/LICENSE-2.0
14 //
15 // Unless required by applicable law or agreed to in writing, software
16 // distributed under the License is distributed on an "AS IS" BASIS,
17 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 // See the License for the specific language governing permissions and
19 // limitations under the License.
20 //
21 
22 
23 #ifndef _TRADATA_REFERENCES_HPP_
24 #define _TRADATA_REFERENCES_HPP_
25 
26 
28 #include "TraData.hpp"
29 
30 
31 namespace pwiz {
32 namespace tradata {
33 
34 
35 /// functions for resolving references from objects into the internal MSData lists
36 namespace References {
37 
38 
39 PWIZ_API_DECL void resolve(RetentionTime& retentionTime, const TraData& td);
40 PWIZ_API_DECL void resolve(Prediction& prediction, const TraData& td);
41 PWIZ_API_DECL void resolve(Configuration& configuration, const TraData& td);
42 PWIZ_API_DECL void resolve(Peptide& peptide, const TraData& td);
43 PWIZ_API_DECL void resolve(Transition& transition, const TraData& td);
44 PWIZ_API_DECL void resolve(Target& target, const TraData& td);
45 
46 
47 /// Resolve internal references in a TraData object.
48 PWIZ_API_DECL void resolve(TraData& td);
49 
50 
51 } // namespace References
52 
53 
54 } // namespace tradata
55 } // namespace pwiz
56 
57 
58 #endif // _TRADATA_REFERENCES_HPP_
59