Files
libsst/Include/ZSimulation/ZPropertyBufferUpdateQueue.hpp
2026-04-03 00:22:39 -05:00

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