summaryrefslogtreecommitdiff
path: root/2003/i/buzz/src/automate/etape.h
blob: e6d9fe868429d0ddffaa47aec18c0bfeb82d8207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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