summaryrefslogtreecommitdiff
path: root/2003/i/buzz/src/automate/etape.h
diff options
context:
space:
mode:
Diffstat (limited to '2003/i/buzz/src/automate/etape.h')
-rw-r--r--2003/i/buzz/src/automate/etape.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/2003/i/buzz/src/automate/etape.h b/2003/i/buzz/src/automate/etape.h
new file mode 100644
index 0000000..e6d9fe8
--- /dev/null
+++ b/2003/i/buzz/src/automate/etape.h
@@ -0,0 +1,19 @@
+#ifndef etape_h
+#define etape_h
+// etape.h
+// buzz - Programme du robot Efrei Robotique I1-I2 2003
+// Copyright (C) 2003 Nicolas Schodet
+
+namespace Automate
+{
+ class Etape
+ {
+ public:
+ int num;
+ public:
+ // Constructeur.
+ Etape (int _num) { num = _num; }
+ };
+}
+
+#endif // etape_h