OpenHantek
exporterprocessor.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0+
2 
3 #pragma once
4 
5 #include "post/processor.h"
6 
7 class ExporterRegistry;
8 
9 class ExporterProcessor : public Processor {
10  public:
12  void process( PPresult * ) override;
13 
14  private:
16 };
Definition: exporterregistry.h:23
ExporterProcessor(ExporterRegistry *registry)
Definition: exporterprocessor.cpp:6
void process(PPresult *) override
Definition: exporterprocessor.cpp:8
Definition: processor.h:7
Definition: exporterprocessor.h:9
ExporterRegistry * registry
Definition: exporterprocessor.h:15
Post processing results.
Definition: ppresult.h:37