VHISTlib
1.84.0.3018
|
00001 /* $HEADERS 00002 $Id: diffdefines.h 2179 2011-06-24 09:03:24Z ahuesgen $ 00003 */ 00004 00005 #ifndef DIFFDEFINES_H 00006 #define DIFFDEFINES_H 00007 00008 #include <QHash> 00009 00010 namespace vhist 00011 { 00012 00013 typedef float Costs; 00014 00015 typedef int NodeId; 00016 static const NodeId NODE_ABOVE_ROOT = -1; 00017 static const NodeId INVALID_NODE = -2; 00018 static const NodeId NULL_NODE = -3; 00019 00020 enum TreeId 00021 { 00022 FIRST_TREE = 1, 00023 SECOND_TREE = 2 00024 }; 00025 00026 typedef QHash<NodeId, NodeId> Associations; 00027 00028 00029 } 00030 00031 #endif // DIFFDEFINES_H