/* ZPropertyBufferUpdateQueue.hpp Author: James Russell Created: 9/17/2015 Purpose: License: Copyright 2015, 762 Studios. */ #pragma once #ifndef _ZPROPERTYBUFFERUPDATEQUEUE_HPP #define _ZPROPERTYBUFFERUPDATEQUEUE_HPP #include "ZPropertyBufferUpdate.hpp" class ZPropertyBufferUpdateQueue { public: // c'tor ZPropertyBufferUpdateQueue(); // d'tor ~ZPropertyBufferUpdateQueue(); private: }; #endif