Matrix Science Mascot Parser toolkit
 
Loading...
Searching...
No Matches
ms_distiller_subsearch.hpp
1/*
2##############################################################################
3# file: ms_distiller_subsearch.hpp
4# 'msparser' toolkit
5##############################################################################
6# COPYRIGHT NOTICE
7# Copyright 1998-2014 Matrix Science Limited All Rights Reserved.
8#
9##############################################################################
10 * @(#)$Source: parser/inc/ms_distiller_subsearch.hpp $
11 * @(#)$Revision: 1b450440f9c97e1e41d0fc6016a27d68951d4532 | MSPARSER_REL_3_0_0-2024-09-24-0-g93ebaeb4f4 $
12 * @(#)$Date: 2018-07-30 16:23:53 +0100 $
13##############################################################################
14 */
15
16#ifndef MS_DISTILLER_SUBSEARCH_HPP
17#define MS_DISTILLER_SUBSEARCH_HPP
18
19
20// Includes from the standard template library
21#include <string>
22
23
24namespace msparser_internal
25{
26 class ms_XMLHelper;
27 class ms_XMLElement;
28}
29
30namespace matrix_science
31{
32 //=========================================================================
38
42 class MS_MASCOTRESFILE_API ms_distiller_subsearch
43 {
44 public:
45 // used internally
47 virtual ~ms_distiller_subsearch() { }
48
49 bool extractXml(msparser_internal::ms_XMLHelper & helper, msparser_internal::ms_XMLElement & element);
50
52 virtual std::string getTaskId() const;
54 virtual std::string getTitle() const;
56 virtual std::string getResultsFile() const;
57
58 private:
59 std::string taskId_;
60 std::string title_;
61 std::string resultsFile_;
62 };
63 // end of quantitation_group
65 //=========================================================================
66
67} // namespace matrix_science
68
69#endif // ms_distiller_subsearch_HPP
70
71/*------------------------------- End of File -------------------------------*/
The details of a Distiller multifile subsearch.
Definition: ms_distiller_subsearch.hpp:43