StimulusBuffer: Fix linker errors
This commit is contained in:
@@ -40,8 +40,11 @@ public:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
explicit StimulusBuffer(
|
explicit StimulusBuffer(
|
||||||
const device::DeviceAttachmentSpec& deviceAttachmentSpec);
|
const device::DeviceAttachmentSpec& deviceAttachmentSpec)
|
||||||
~StimulusBuffer();
|
: deviceAttachmentSpec(deviceAttachmentSpec)
|
||||||
|
{}
|
||||||
|
|
||||||
|
~StimulusBuffer() = default;
|
||||||
|
|
||||||
// Non-copyable, movable
|
// Non-copyable, movable
|
||||||
StimulusBuffer(const StimulusBuffer&) = delete;
|
StimulusBuffer(const StimulusBuffer&) = delete;
|
||||||
@@ -49,7 +52,7 @@ public:
|
|||||||
StimulusBuffer(StimulusBuffer&&) = default;
|
StimulusBuffer(StimulusBuffer&&) = default;
|
||||||
StimulusBuffer& operator=(StimulusBuffer&&) = default;
|
StimulusBuffer& operator=(StimulusBuffer&&) = default;
|
||||||
|
|
||||||
private:
|
public:
|
||||||
device::DeviceAttachmentSpec deviceAttachmentSpec;
|
device::DeviceAttachmentSpec deviceAttachmentSpec;
|
||||||
std::vector<StimFrame> frames_;
|
std::vector<StimFrame> frames_;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user