openEMS/FDTD/processing.h
2010-03-01 19:35:28 +01:00

26 lines
370 B
C++

#ifndef PROCESSING_H
#define PROCESSING_H
#include <iostream>
#include <fstream>
#include "operator.h"
#include "engine.h"
class Processing
{
public:
Processing(Operator* op, Engine* eng);
virtual ~Processing();
virtual void OpenFile(string outfile);
virtual void Process() {};
protected:
Operator* Op;
Engine* Eng;
ofstream file;
};
#endif // PROCESSING_H