Began implementing the VCommunication namespace.
[aesalon.git] / monitor / src / vcommunication / Packet.cpp
blobc3c3d6b7aeb09c2ae600f48e409b8e868d383a4e
1 /**
2 Aesalon, a tool to visualize a program's behaviour at run-time.
3 Copyright (C) 2010, Aesalon Development Team.
5 Aesalon is distributed under the terms of the GNU GPLv3. For more
6 licensing information, see the file LICENSE included with the distribution.
8 @file monitor/src/vcommunication/Packet.cpp
12 #include "vcommunication/Packet.h"
14 namespace Monitor {
15 namespace VCommunication {
17 Packet::Packet(pid_t processID, pthread_t threadID, ModuleID moduleID, void *data, int dataSize)
18 : m_processID(processID), m_threadID(threadID), m_moduleID(moduleID), m_data(data), m_dataSize(dataSize) {
23 } // namespace VCommunication
24 } // namespace Monitor