zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 291fa0641b63bd09d66c4abf21ed5d9a3659c301
parent 9c38f10943a996c4f11d5e0e287f20982c970bf9
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Mon,  5 Nov 2012 22:54:13 -0500

Adding Header Guards to PresetsStore.h

Diffstat:
Msrc/Params/PresetsStore.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/Params/PresetsStore.h b/src/Params/PresetsStore.h @@ -20,6 +20,9 @@ */ +#ifndef PRESETSTORE_H +#define PRESETSTORE_H + #include <string> #include <vector> #include "../Misc/XMLwrapper.h" @@ -64,3 +67,4 @@ class PresetsStore }; extern PresetsStore presetsstore; +#endif