/**
 * GetdpOutputAnalyzer.hpp
 *
 *  Created on: Jan 22, 2019
 *      Author: vadims
 Concrete class, used to analyze ouput of the simulation software

 */

#ifndef GETTDPOUTPUTANALYZER_HPP_
#define GETTDPOUTPUTANALYZER_HPP_
#include "easylogging++/easylogging++.h"
#include "OutputAnalyzer.hpp"

class GetdpOutputAnalyzer: public OutputAnalyzer
{
public:
    GetdpOutputAnalyzer(MessageQueue_ messageQueue_);

private:
    messagedata Analyze(std::string) override;
    messagedata AddToBuffer(char*) override;

};

#endif //GETTDPOUTPUTANALYZER_HPP_