More work on PcloudStimulusBuffer

This commit is contained in:
2025-10-25 19:42:48 -04:00
parent 682b9e121b
commit b89c8cdc4f
3 changed files with 11 additions and 17 deletions
+4 -1
View File
@@ -7,6 +7,7 @@
#include <atomic>
#include <mutex>
#include "stimFrame.h"
#include "deviceAttachmentSpec.h"
namespace smo {
namespace stim_buff {
@@ -38,7 +39,8 @@ public:
};
public:
explicit StimulusBuffer();
explicit StimulusBuffer(
const device::DeviceAttachmentSpec& deviceAttachmentSpec);
~StimulusBuffer();
// Non-copyable, movable
@@ -48,6 +50,7 @@ public:
StimulusBuffer& operator=(StimulusBuffer&&) = default;
private:
device::DeviceAttachmentSpec deviceAttachmentSpec;
std::vector<StimFrame> frames_;
};