changeset 1495:6965c83c8fa7

Couple of include guards
author Chris Cannam
date Mon, 13 Aug 2018 11:43:38 +0100
parents 0d4f1fcad97a
children fde8c497373f 900601b954f2
files data/model/NoteData.h data/model/NoteModel.h
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/data/model/NoteData.h	Thu Aug 09 16:45:17 2018 +0100
+++ b/data/model/NoteData.h	Mon Aug 13 11:43:38 2018 +0100
@@ -12,8 +12,8 @@
     COPYING included with this distribution for more information.
 */
 
-#ifndef NOTE_DATA_H
-#define NOTE_DATA_H
+#ifndef SV_NOTE_DATA_H
+#define SV_NOTE_DATA_H
 
 #include <vector>
 
--- a/data/model/NoteModel.h	Thu Aug 09 16:45:17 2018 +0100
+++ b/data/model/NoteModel.h	Mon Aug 13 11:43:38 2018 +0100
@@ -13,8 +13,8 @@
     COPYING included with this distribution for more information.
 */
 
-#ifndef _NOTE_MODEL_H_
-#define _NOTE_MODEL_H_
+#ifndef SV_NOTE_MODEL_H
+#define SV_NOTE_MODEL_H
 
 #include "IntervalModel.h"
 #include "NoteData.h"