Skip to content
Snippets Groups Projects
Message.h 413 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(string sender, string destination, list<double> data);
jdkruege's avatar
jdkruege committed
	~Message();

	string getSender();
	string getDestination();
jdkruege's avatar
jdkruege committed

	ostream& operator>>(ostream& os);

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