mirror of
https://github.com/nasa/trick.git
synced 2024-12-30 09:58:53 +00:00
36 lines
678 B
C++
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
|