neic-glass3  1.4.6
gpickparser.h
Go to the documentation of this file.
1 /*****************************************
2  * This file is documented for Doxygen.
3  * If you modify this file please update
4  * the comments so that Doxygen will still
5  * be able to work.
6  ****************************************/
7 #ifndef GPICKPARSER_H
8 #define GPICKPARSER_H
9 
10 #include <json.h>
11 #include <parser.h>
12 #include <string>
13 #include <memory>
14 
15 namespace glass3 {
16 namespace parse {
60  public:
72  GPickParser(const std::string &defaultAgencyID,
73  const std::string &defaultAuthor);
74 
80  ~GPickParser();
81 
95  std::shared_ptr<json::Object> parse(const std::string &input) override;
96 };
97 } // namespace parse
98 } // namespace glass3
99 #endif // GPICKPARSER_H
GPickParser(const std::string &defaultAgencyID, const std::string &defaultAuthor)
gpickparser constructor
Definition: gpickparser.cpp:66
~GPickParser()
gpickparser destructor
Definition: gpickparser.cpp:72
glass3 parser class
Definition: parser.h:39
The neic-glass3 project namespace containing all the classes and functions that make up neic-glass3...
glass global pick parser class
Definition: gpickparser.h:59
std::shared_ptr< json::Object > parse(const std::string &input) override
global pick parsing function
Definition: gpickparser.cpp:76