33 lines
445 B
C++
33 lines
445 B
C++
/*
|
|
ZPropertyBufferUpdateQueue.hpp
|
|
Author: James Russell <jcrussell@762studios.com>
|
|
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 |