OpenHantek
processor.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0+
2 
3 #pragma once
4 
5 #include "ppresult.h"
6 
7 class Processor {
8 public:
9  virtual void process(PPresult*) = 0;
10 };
Definition: processor.h:7
virtual void process(PPresult *)=0
Post processing results.
Definition: ppresult.h:36