Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git] / include / artisan / gviewport / TreeType.h
blobcc2004396c158f500fc54a7b568c2051d268bd22
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/gviewport/TreeType.h
8 */
10 #ifndef AesalonArtisan_GViewport_TreeType_H
11 #define AesalonArtisan_GViewport_TreeType_H
13 #include "storage/RTree.h"
15 namespace Artisan {
16 namespace GViewport {
18 class Object;
20 typedef Storage::RTree<double, Object *, 2, 64, 8> TreeType;
22 } // namespace GViewport
23 } // namespace Artisan
25 #endif