Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of g3_waterplay by
Diff: Procedure.h
- Revision:
- 7:46e65aeb4df2
diff -r 931a7fe8fa52 -r 46e65aeb4df2 Procedure.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Procedure.h Sun Jun 19 23:48:07 2016 +0000
@@ -0,0 +1,23 @@
+/*
+* G3: WATERPLAY
+*/
+
+#ifndef PROCEDURE_H
+#define PROCEDURE_H
+
+#include "Printer.h"
+#include "mbed.h"
+
+class Procedure
+{
+public:
+ Procedure(
+ Printer &printer
+ );
+ int proceed();
+
+private:
+ Printer &_printer;
+};
+
+#endif
\ No newline at end of file
