Began refactoring the entire source tree.
[aesalon.git] / include / visualizer / storage / MemoryPoolItem.h
blobf6ff0c590ee13ce381dc8b991c264d954c982fdd
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 include/visualizer/storage/MemoryPoolItem.h
12 #ifndef AesalonVisualizer_Storage_MemoryPoolItem_H
13 #define AesalonVisualizer_Storage_MemoryPoolItem_H
15 namespace Visualizer {
16 namespace Storage {
18 class MemoryPoolItem {
19 public:
20 virtual ~MemoryPoolItem() {}
23 } // namespace Storage
24 } // namespace Visualizer
26 #endif