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

#ifndef RTSTAT_H
#define RTSTAT_H

class Statistics {
	public:
		int noOfConnections; /* no. of connections talking to the router*/
		int noOfMessages; /* on the message queue */
		int noOfDataBytes; /* total no. of bytes on the message queue */
		
	Statistics();
	~Statistics();
	int	get_number_of_connections(void);
	int	get_number_of_messages(void);
	int	get_number_of_data_bytes(void);
};


#endif /* RTSTAT_H */


