trick/trick_source/sim_services/Message/include/MessageCout.hh
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

48 lines
1.3 KiB
C++

/*
PURPOSE:
(Trick runtime simulation executive parameter definition.)
REFERENCE:
(((Bailey, R.W, and Paddock, E.J.) (Trick Simulation Environment)
(NASA:JSC #37943)
(JSC / Engineering Directorate / Automation and Robotics Division)
(June 1994) (--)))
ASSUMPTIONS AND LIMITATIONS:
((Only 64 levels of nested input data file inclusion.))
PROGRAMMERS:
(((Robert W. Bailey) (LinCom) (4/92) (--) (Realtime))
((Robert W. Bailey) (LinCom) (6/1/91) (Trick-CR-00000) (Initial Release)))
*/
#ifndef MESSAGECOUT_HH
#define MESSAGECOUT_HH
#include <iostream>
#include "sim_services/Message/include/MessageSubscriber.hh"
namespace Trick {
/**
* This MessageCout is a class that inherits from MessageSubscriber.
* It defines a type of MessageSubscriber with its received message sending to the standard output stream.
*/
class MessageCout : public MessageSubscriber {
public:
/**
@brief The constructor.
*/
MessageCout() ;
/**
@brief Output header & message to standard output stream.
*/
virtual void update( unsigned int level , std::string header , std::string message ) ;
} ;
}
#endif