2015-02-26 09:02:31 -06:00
|
|
|
/*
|
|
|
|
PURPOSE: (Class for starting Monte Monitor.)
|
|
|
|
*/
|
|
|
|
|
2015-03-23 16:03:14 -05:00
|
|
|
#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
|