// This may look like C code, but it is really -*- C++ -*- #ifndef ASCIITOIWTR_H #define ASCIITOIWTR_H #include "toi.h" #include "toiprocessor.h" #include class ASCIITOIWriter : public TOIProcessor { public: ASCIITOIWriter(string fn); ~ASCIITOIWriter(); virtual void addInput(string name, TOI* toi); virtual void setOutFlags(bool yn = true); virtual void run(); private: string fname; ofstream s; vector fwinputs; bool outFlags; }; #endif