diff options
author | Tim E. Real <termtech@rogers.com> | 2011-04-17 01:57:25 +0000 |
---|---|---|
committer | Tim E. Real <termtech@rogers.com> | 2011-04-17 01:57:25 +0000 |
commit | 7afee6563e1b620f06b567ff19e428c6dd203835 (patch) | |
tree | 49022fdb7386d5263aa9b743fba29b659b2d7e86 /muse2/al | |
parent | 42be6376637248e01ea2ab0a41a6653b53d71800 (diff) |
Added destructors to sigmap and tempomap.
Diffstat (limited to 'muse2/al')
-rw-r--r-- | muse2/al/sig.cpp | 6 | ||||
-rw-r--r-- | muse2/al/sig.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/muse2/al/sig.cpp b/muse2/al/sig.cpp index 7eeae6be..293a5b3e 100644 --- a/muse2/al/sig.cpp +++ b/muse2/al/sig.cpp @@ -64,6 +64,12 @@ SigList::SigList() insert(std::pair<const unsigned, SigEvent*> (MAX_TICK, new SigEvent(TimeSignature(4, 4), 0))); } +SigList::~SigList() + { + for (iSigEvent i = begin(); i != end(); ++i) + delete i->second; + } + //--------------------------------------------------------- // add // signatures are only allowed at the beginning of diff --git a/muse2/al/sig.h b/muse2/al/sig.h index ed18981f..618cd53c 100644 --- a/muse2/al/sig.h +++ b/muse2/al/sig.h @@ -85,6 +85,7 @@ class SigList : public SIGLIST { public: SigList(); + ~SigList(); void clear(); void add(unsigned tick, const TimeSignature& s); //void add(unsigned tick, int z, int n); |