trick/trick_source/sim_services/Message/include/PlaybackFile.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

36 lines
697 B
C++

/*
PURPOSE:
(Playback messages)
*/
#ifndef PLAYBACKFILE_HH
#define PLAYBACKFILE_HH
#include <string>
#include <iostream>
#include <fstream>
#include "sim_services/Message/include/MessageFile.hh"
namespace Trick {
/**
* This PlaybackFile is a class that inherits from MessageFile.
* It defines a type of MessageSubscriber with its received message sending to a file.
*/
class PlaybackFile : public MessageFile {
public:
PlaybackFile() ;
/**
@brief Output message to the file.
*/
virtual void update( unsigned int level , std::string header , std::string message ) ;
} ;
}
#endif