Implemented basic viewport scrolling in BasicViewport.
[aesalon.git] / include / artisan / DataStore.h
blobebf9a3cbf1de9152060a8094d29683d010ce135b
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/artisan/DataStore.h
8 */
10 #ifndef AesalonArtisan_DataStore_H
11 #define AesalonArtisan_DataStore_H
13 #include "comm/Packet.h"
15 namespace Artisan {
17 class DataStore {
18 public:
19 virtual ~DataStore() {}
21 virtual void process(Comm::Packet *packet) = 0;
24 } // namespace Artisan
26 #endif