Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git] / include / monitor / DataOutput.h
blob90db706eb2ed54037c594b2ca0d16288627dde0c
1 /** Aesalon, a tool to visualize program behaviour in real time.
2 Copyright (C) 2009-2011, Aesalon development team.
4 Aesalon is distributed under the terms of the GNU GPLv3. See
5 the included file LICENSE for more information.
7 @file include/monitor/DataOutput.h
8 */
10 #ifndef AesalonMonitor_DataOutput_H
11 #define AesalonMonitor_DataOutput_H
13 #include "comm/Packet.h"
15 namespace Monitor {
17 class DataOutput {
18 public:
19 virtual ~DataOutput() {}
21 virtual void output(Comm::Packet *packet) = 0;
24 } // namespace Monitor
26 #endif