// This file has been written by Jiri Bittner, October 2006 #ifndef __BVHLOADER_H #define __BVHLOADER_H #include "Bvh.h" class igzstream; namespace CHCDemoEngine { /** Loader for a bounding volume hierarchy. */ class BvhLoader { public: Bvh *Load(const std::string &filename, const SceneEntityContainer &entities); protected: BvhNode *LoadNextNode(igzstream &stream, BvhInterior *parent); }; } #endif // __BVHLOADER_H