diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-01-26 20:31:31 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-02-05 12:34:49 +0100 |
commit | 47833d52f6e9f8d3d68d0b22ca8fd31dde09e4b1 (patch) | |
tree | 829c77c301e257174e5591a27e0870c05e89edec /src/sample.cc | |
parent | 235ad6fbbce2e0ae9e06db960a5ba3b099936ace (diff) |
Add positional information to drumkit xml and sample class.
Diffstat (limited to 'src/sample.cc')
-rw-r--r-- | src/sample.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/sample.cc b/src/sample.cc index 9af2c08..2c59f5e 100644 --- a/src/sample.cc +++ b/src/sample.cc @@ -28,9 +28,11 @@ #include <sndfile.h> -Sample::Sample(const std::string& name, double power, bool normalized) +Sample::Sample(const std::string& name, double power, double position, + bool normalized) : name{name} , power{power} + , position{position} , normalized(normalized) , audiofiles{} { @@ -69,6 +71,11 @@ double Sample::getPower() const return power; } +double Sample::getPosition() const +{ + return position; +} + bool Sample::getNormalized() const { return normalized; |