1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 02:17:08 +00:00

This is going to be a slow walk, I think. This class attempts to be the scratchpad which will hold in-memory track modifications.

This commit is contained in:
Thomas Harte
2016-12-16 19:20:38 -05:00
parent 1e757d1039
commit dc08a23ceb
3 changed files with 73 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
//
// PCMPatchedTrack.cpp
// Clock Signal
//
// Created by Thomas Harte on 15/12/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#include "PCMPatchedTrack.hpp"
using namespace Storage::Disk;
void PCMPatchedTrack::add_segment(const Time &start_position, const PCMSegment &segment)
{
patches_.emplace_back(start_position, segment);
}