diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-01-26 20:31:31 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-07-22 11:21:48 +0200 |
commit | a095aef4f9d2fe0584eeadca85039dbc838355ed (patch) | |
tree | 976dff233adbb073e2383593825a024d7b956a7b /src/sample.cc | |
parent | 019d478818950f7880d2c0f80d8fc8f963e9736b (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; |