Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 708de7f2b4a71bdb0f672a5f4ae09eb4cb7958a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Message.cpp
 *
 *  Created on: 06.06.2012
 *      Author: karlitsc
 */

#include "Message.h"

#include <sstream>

namespace etRuntime {


Message::~Message() {
	m_next = 0;
}

std::string Message::toString(){
   std::stringstream strm;
   strm << "Message(" << m_address.toString() << ")";
   return strm.str();
}

} /* namespace etRuntime */

Back to the top