trick/trick_source/sim_services/ExternalApplications/include/MonteMonitor.hh
2015-02-26 09:02:31 -06:00

36 lines
678 B
C++

/*
PURPOSE: (Class for starting Monte Monitor.)
*/
/*
* $Id: MonteMonitor.hh 2126 2012-01-17 22:08:56Z dbankie $
*/
#ifndef _MONTEMONITOR_HH_
#define _MONTEMONITOR_HH_
#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