Skip to content
Snippets Groups Projects
Message.h 337 B
Newer Older
jdkruege's avatar
jdkruege committed
#pragma once

#include <iostream>
#include <stdio.h>
#include <list>

using namespace std;

jdkruege's avatar
jdkruege committed
{
public:
	Message();
	~Message();

	string getSender();
	string getDestination();
	

	ostream& operator>>(ostream& os);

	istream& operator<<(istream& is);
private:
	string _sender;
	string _destination;

	list<double> data;

};