/*****************************************************************************
* 	Project 	: Network Based Message Queue System		    **
*	Course		: CIS 650 - Software Engineering		    **
*	Location 	: /research/paraducks3/courses/cis650/proj/rt	    **
*	File		: rtlog.h					    **
*	Description 	: Logging Module. Class description	  	    **
*****************************************************************************/

#ifndef RTLOG_H
#define RTLOG_H

/* the Log class */

class Log {
	
	public :
	int	logFd; /* file descriptor of the log */

	Log();
	~Log();
	int	log_message(Connection *c, Message *m);
};

#endif

