From b58bd2842d411c60c574e8ac72be520f48a8cd92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gl=C3=B6ckner?= Date: Tue, 29 Mar 2016 16:53:03 +0200 Subject: Reformatted MidiMapper --- src/midimapper.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'src/midimapper.h') diff --git a/src/midimapper.h b/src/midimapper.h index e8f7ab3..1887013 100644 --- a/src/midimapper.h +++ b/src/midimapper.h @@ -24,8 +24,7 @@ * along with DrumGizmo; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DRUMGIZMO_MIDIMAPPER_H__ -#define __DRUMGIZMO_MIDIMAPPER_H__ +#pragma once #include #include @@ -33,14 +32,13 @@ typedef std::map midimap_t; typedef std::map instrmap_t; -class MidiMapper { +class MidiMapper +{ public: - void clear(); + void clear(); - int lookup(int note); + int lookup(int note); - instrmap_t instrmap; - midimap_t midimap; + instrmap_t instrmap; + midimap_t midimap; }; - -#endif/*__DRUMGIZMO_MIDIMAPPER_H__*/ -- cgit v1.2.3