Started implementing various things.
[aesalon.git] / include / visualizer / storage / MemoryPoolEntry.h
blob2fe3a91c4c80358dfb1731f415043b9d5f829d46
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/MemoryPoolEntry.h
12 #ifndef AesalonVisualizer_Storage_MemoryPoolEntry_H
13 #define AesalonVisualizer_Storage_MemoryPoolEntry_H
15 namespace Visualizer {
16 namespace Storage {
18 class MemoryPoolEntry {
19 public:
20 MemoryPoolEntry();
21 ~MemoryPoolEntry();
24 } // namespace Storage
25 } // namespace Visualizer
27 #endif