// Author: David Lawrence Sep. 29, 2006 // // // hd_ana.cc // #include #include "MyProcessor.h" //----------- // main //----------- int main(int narg, char *argv[]) { // Instantiate an event loop object JApplication app(narg, argv); // Run though all events, calling our event processor's methods app.Run(new MyProcessor(), 1); return 0; }