neic-glass3  1.4.6
ccparser.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 CCPARSER_H
8 #define CCPARSER_H
9 
10 #include <json.h>
11 #include <parser.h>
12 #include <string>
13 #include <memory>
14 
15 namespace glass3 {
16 namespace parse {
56  public:
68  CCParser(const std::string &defaultAgencyID,
69  const std::string &defaultAuthor);
70 
76  ~CCParser();
77 
91  std::shared_ptr<json::Object> parse(const std::string &input) override;
92 };
93 } // namespace parse
94 } // namespace glass3
95 #endif // CCPARSER_H
~CCParser()
ccparser destructor
Definition: ccparser.cpp:63
glass3 parser class
Definition: parser.h:39
The neic-glass3 project namespace containing all the classes and functions that make up neic-glass3...
std::shared_ptr< json::Object > parse(const std::string &input) override
cross correlation parsing function
Definition: ccparser.cpp:67
glass cross correlation message parser class
Definition: ccparser.h:55
CCParser(const std::string &defaultAgencyID, const std::string &defaultAuthor)
ccparser constructor
Definition: ccparser.cpp:57