Erased deprecated code

This commit is contained in:
Atlante45 2014-04-07 17:28:03 -07:00
parent d213cd7840
commit 46f0e78039

View file

@ -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__) */