mirror of
https://github.com/overte-org/overte.git
synced 2025-07-28 23:20:30 +02:00
Erased deprecated code
This commit is contained in:
parent
d213cd7840
commit
46f0e78039
1 changed files with 1 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
//
|
//
|
||||||
// VoxelTree.h
|
// VoxelTree.h
|
||||||
// hifi
|
// hifi
|
||||||
//
|
//
|
||||||
|
@ -14,7 +14,6 @@
|
||||||
#include "VoxelTreeElement.h"
|
#include "VoxelTreeElement.h"
|
||||||
#include "VoxelEditPacketSender.h"
|
#include "VoxelEditPacketSender.h"
|
||||||
|
|
||||||
class QUndoStack;
|
|
||||||
class ReadCodeColorBufferToTreeArgs;
|
class ReadCodeColorBufferToTreeArgs;
|
||||||
|
|
||||||
class VoxelTree : public Octree {
|
class VoxelTree : public Octree {
|
||||||
|
@ -45,8 +44,6 @@ public:
|
||||||
virtual bool handlesEditPacketType(PacketType packetType) const;
|
virtual bool handlesEditPacketType(PacketType packetType) const;
|
||||||
virtual int processEditPacketData(PacketType packetType, const unsigned char* packetData, int packetLength,
|
virtual int processEditPacketData(PacketType packetType, const unsigned char* packetData, int packetLength,
|
||||||
const unsigned char* editData, int maxLength, const SharedNodePointer& node);
|
const unsigned char* editData, int maxLength, const SharedNodePointer& node);
|
||||||
|
|
||||||
void setUndoStack(QUndoStack* undoStack) { _undoStack = undoStack; }
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// helper functions for nudgeSubTree
|
// helper functions for nudgeSubTree
|
||||||
|
@ -55,8 +52,6 @@ private:
|
||||||
void nudgeLeaf(VoxelTreeElement* element, void* extraData);
|
void nudgeLeaf(VoxelTreeElement* element, void* extraData);
|
||||||
void chunkifyLeaf(VoxelTreeElement* element);
|
void chunkifyLeaf(VoxelTreeElement* element);
|
||||||
void readCodeColorBufferToTreeRecursion(VoxelTreeElement* node, ReadCodeColorBufferToTreeArgs& args);
|
void readCodeColorBufferToTreeRecursion(VoxelTreeElement* node, ReadCodeColorBufferToTreeArgs& args);
|
||||||
|
|
||||||
QUndoStack* _undoStack;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* defined(__hifi__VoxelTree__) */
|
#endif /* defined(__hifi__VoxelTree__) */
|
||||||
|
|
Loading…
Reference in a new issue