mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-17 05:58:28 +02:00
removing VoxelQuery
This commit is contained in:
parent
e96206914e
commit
a28f016de0
2 changed files with 0 additions and 34 deletions
|
@ -1,9 +0,0 @@
|
|||
//
|
||||
// VoxelQuery.cpp
|
||||
// hifi
|
||||
//
|
||||
// Created by Brad Hefta-Gaub on 10/24/13.
|
||||
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
||||
//
|
||||
|
||||
#include "VoxelQuery.h"
|
|
@ -1,25 +0,0 @@
|
|||
//
|
||||
// VoxelQuery.h
|
||||
// hifi
|
||||
//
|
||||
// Created by Stephen Birarda on 4/9/13.
|
||||
// Copyright (c) 2013 High Fidelity, Inc. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef __hifi__VoxelQuery__
|
||||
#define __hifi__VoxelQuery__
|
||||
|
||||
#include <OctreeQuery.h>
|
||||
|
||||
class VoxelQuery : public OctreeQuery {
|
||||
|
||||
public:
|
||||
// currently just an alias
|
||||
VoxelQuery() : OctreeQuery() {};
|
||||
private:
|
||||
// privatize the copy constructor and assignment operator so they cannot be called
|
||||
VoxelQuery(const VoxelQuery&);
|
||||
VoxelQuery& operator= (const VoxelQuery&);
|
||||
};
|
||||
|
||||
#endif /* defined(__hifi__VoxelQuery__) */
|
Loading…
Reference in a new issue