]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/bvh/BVHNode.hxx
Remove using std:: from the metar header, remove HTTP support, add very basic unit...
[simgear.git] / simgear / scene / bvh / BVHNode.hxx
index 3bdce72ff2552c5931967a1300bb6ce22fbae2b1..10a0a957f3ae305aca373a0e8b6abbcf9631769d 100644 (file)
@@ -45,6 +45,13 @@ public:
         return _boundingSphere;
     }
     virtual SGSphered computeBoundingSphere() const = 0;
+
+    /// A unique id for some kind of BVHNodes.
+    /// Currently only motions transforms.
+    typedef unsigned Id;
+
+    // Factory to get a new id
+    static Id getNewId();
     
 protected:
     friend class BVHGroup;