mirror of
https://github.com/nasa/trick.git
synced 2025-01-10 06:52:52 +00:00
14a75508a3
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.
36 lines
697 B
C++
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
|
|
|