Changed file extensions from .c to .cpp

Dependents:   FINAL_PROJECT

Fork of USBMIDI by Simon Ford

Revision:
0:56b095524cf2
Child:
1:ff74eabe02cd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/USBMIDI.h	Sun Feb 06 17:26:29 2011 +0000
@@ -0,0 +1,26 @@
+#ifndef MBED_USBMIDI_H
+#define MBED_USBMIDI_H
+
+#include "MIDIMessage.h"
+
+class USBMIDI {
+public:
+	USBMIDI() {}
+	~USBMIDI() {}
+		
+	// write messages
+	void write(MIDIMessage m) {}
+	int writeable() { return 0; }
+		
+	// read messages
+	MIDIMessage read() { return MIDIMessage::NoteOn(0); }
+	int readable() { return 0; }
+		
+	// notification of incoming message
+	void attach(void (*fptr)(void)) {}
+	
+	template <class T>
+	void attach(T *tptr, void (T::*mptr)(void)) {}
+}; 
+
+#endif