summaryrefslogtreecommitdiff
path: root/src/drumkit.h
diff options
context:
space:
mode:
authorVolker Fischer <corrados@users.noreply.github.com>2023-09-25 19:25:09 +0200
committerVolker Fischer <corrados@users.noreply.github.com>2023-09-25 19:25:09 +0200
commit60fc225f5b5129f6c4530acaf5858a9ecf2f7e56 (patch)
treecae9b79c10faf5bfac2cb9ff286f306b0bcade27 /src/drumkit.h
parentd08840a61f405bc89e730c0cef51537e89e6dbb5 (diff)
added new drumkit XML parameter islogpower and support logarithmic powers for the dynamic expander
Diffstat (limited to 'src/drumkit.h')
-rw-r--r--src/drumkit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drumkit.h b/src/drumkit.h
index aee5d19..3f2677f 100644
--- a/src/drumkit.h
+++ b/src/drumkit.h
@@ -51,6 +51,7 @@ public:
void clear();
bool isValid() const;
+ bool isLogPower() const;
float getSamplerate() const;
@@ -74,5 +75,6 @@ private:
std::string _description;
float _samplerate{44100.0f};
VersionStr _version;
+ bool _islogpower{false};
} metadata;
};