From d172d756cfcdfbde5c6b8c6d25a51f58624739e6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andr=C3=A9=20Nusser?= <andre.nusser@googlemail.com>
Date: Tue, 22 Mar 2016 00:40:15 +0100
Subject: Parser refactoring.

* Use new style
* Update to C++11
* Use more std::string than char*
---
 src/drumkitparser.cc    | 6 +++---
 src/instrumentparser.cc | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/drumkitparser.cc b/src/drumkitparser.cc
index 3ba69c8..a538996 100644
--- a/src/drumkitparser.cc
+++ b/src/drumkitparser.cc
@@ -36,7 +36,7 @@
 
 DrumKitParser::DrumKitParser(DrumKit& kit)
 	: kit(kit)
- 	, refs(REFSFILE)
+	, refs(REFSFILE)
 {
 }
 
@@ -101,7 +101,7 @@ void DrumKitParser::startTag(const std::string& name, const attr_t& attr)
 			{
 				ERR(kitparser, "Error parsing version number: %s, using 1.0\n", err);
 				kit._version = VersionStr(1,0,0);
-			} 
+			}
 		}
 		else
 		{
@@ -112,7 +112,7 @@ void DrumKitParser::startTag(const std::string& name, const attr_t& attr)
 
 	if(name == "channels")
 	{
-	
+
 	}
 
 	if(name == "channel")
diff --git a/src/instrumentparser.cc b/src/instrumentparser.cc
index 268f8f3..8bcb7a0 100644
--- a/src/instrumentparser.cc
+++ b/src/instrumentparser.cc
@@ -71,7 +71,7 @@ void InstrumentParser::startTag(const std::string& name, const attr_t& attr)
 			{
 				ERR(instrparser, "Error parsing version number: %s, using 1.0\n", err);
 				instrument.version = VersionStr(1,0,0);
-			} 
+			}
 		}
 		else
 		{
@@ -93,10 +93,10 @@ void InstrumentParser::startTag(const std::string& name, const attr_t& attr)
 			return;
 		}
 
-		float power; 
+		float power;
 		if(attr.find("power") == attr.end())
 		{
-			power = -1; 
+			power = -1;
 		}
 		else
 		{
-- 
cgit v1.2.3