32 lines
606 B
C++
Raw Normal View History

2015-02-26 09:02:31 -06:00
/*
PURPOSE: (Class for starting Monte Monitor.)
*/
#ifndef MONTEMONITOR_HH
#define MONTEMONITOR_HH
2015-02-26 09:02:31 -06:00
#include "sim_services/ExternalApplications/include/ExternalApplication.hh"
namespace Trick {
/**
* Provides for automatic launching of Monte Monitor.
*
* @author Derek Bankieris
*/
class MonteMonitor : public ExternalApplication {
public:
/** Constructor. */
MonteMonitor();
private:
/** Prevent SWIG from trying to invoke operator= on ostringstream. */
MonteMonitor &operator=(const MonteMonitor &);
};
}
#endif