More work on PcloudStimulusBuffer
This commit is contained in:
@@ -6,20 +6,5 @@
|
||||
namespace smo {
|
||||
namespace stim_buff {
|
||||
|
||||
PcloudStimulusBuffer::PcloudStimulusBuffer()
|
||||
: StimulusBuffer()
|
||||
{
|
||||
if (OptionParser::getOptions().verbose) {
|
||||
std::cout << "PcloudStimulusBuffer: Created point cloud stimulus buffer" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
PcloudStimulusBuffer::~PcloudStimulusBuffer()
|
||||
{
|
||||
if (OptionParser::getOptions().verbose) {
|
||||
std::cout << "PcloudStimulusBuffer: Destroyed point cloud stimulus buffer" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace stim_buff
|
||||
} // namespace smo
|
||||
|
||||
@@ -19,7 +19,13 @@ class PcloudStimulusBuffer
|
||||
: public StimulusBuffer
|
||||
{
|
||||
public:
|
||||
explicit PcloudStimulusBuffer(const PcloudFormatDesc& formatDesc);
|
||||
explicit PcloudStimulusBuffer(
|
||||
const device::DeviceAttachmentSpec& deviceAttachmentSpec,
|
||||
const PcloudFormatDesc& formatDesc)
|
||||
: StimulusBuffer(deviceAttachmentSpec),
|
||||
formatDesc(formatDesc)
|
||||
{}
|
||||
|
||||
~PcloudStimulusBuffer();
|
||||
|
||||
// Non-copyable, movable
|
||||
|
||||
Reference in New Issue
Block a user