summaryrefslogtreecommitdiff
path: root/2003/i/buzz/src/automate/etape.h
diff options
context:
space:
mode:
authorschodet2003-05-08 15:18:58 +0000
committerschodet2003-05-08 15:18:58 +0000
commitfa92b08399708d7846d61094a9b73983684d2138 (patch)
treeeb511beea201931788b9d3b4b7790f7160d02734 /2003/i/buzz/src/automate/etape.h
parente5287bcd6975507ce4f03b4dad082c3cdccf96ca (diff)
Ajout du module automate
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