Began implementing Artisan::GViewport.
[aesalon.git] / include / artisan / Storage.h
blob827ea5788faf21342633734eaa4d6467cb09eabf
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/Storage.h
8 */
10 #ifndef AesalonArtisan_Storage_H
11 #define AesalonArtisan_Storage_H
13 #include "comm/Packet.h"
15 namespace Artisan {
17 class Storage {
18 public:
19 virtual ~Storage() {}
21 virtual void process(Comm::Packet *packet) = 0;
24 } // namespace Artisan
26 #endif