UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
hds_ldb_seis_parameter_xml_parser.hpp
1 /* hds_ldb_seis_parameter_xml_parser.hpp */
2 /* $Id$ */
3 #ifndef __hds_ldb_seis_parameter_xml_parser_hpp
4 #define __hds_ldb_seis_parameter_xml_parser_hpp
5 
6 #include <hds_xml/hds_parameter_xml_parser.hpp>
7 
9 namespace hds
10 {
12  {
13  public:
14 
15  // names of xml tags
16  struct Tags
17  {
18  static const char project[];
19  static const char mode[];
20  };
21 
23 
24  virtual ~LDBSeisParameterXMLParser();
25 
26  virtual QDomElement operator()(const hds::BatchModuleParameter &param,
27  QDomDocument &doc) const;
28 
29  virtual BatchModuleParameter* operator()(const QDomNode &node) const;
30  };
31 
32 
33 };
34 
35 
36 #endif /* hds_ldb_seis_parameter_xml_parser.hpp */
Definition: hds_ldb_seis_parameter_xml_parser.hpp:16
Definition: hds_ldb_seis_parameter_xml_parser.hpp:11
Definition: hds_parameter_xml_parser.hpp:15
Definition: hds_batch_module_parameter.hpp:13