#include "QueryManager.h" namespace GtpVisibility { QueryManager::QueryManager(HierarchyInterface *hierarchyInterface) :mHierarchyInterface(hierarchyInterface) { } bool QueryManager::ShootRay(const Ray &ray, std::vector *visibleMeshes, bool isGlobalLine) { // run OGRE ray shooting query return false; } } // namespace GtpVisibility