summaryrefslogtreecommitdiff
path: root/2003/i/buzz/src/vision/thresholds.h
diff options
context:
space:
mode:
Diffstat (limited to '2003/i/buzz/src/vision/thresholds.h')
-rw-r--r--2003/i/buzz/src/vision/thresholds.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/2003/i/buzz/src/vision/thresholds.h b/2003/i/buzz/src/vision/thresholds.h
index b11c387..42d7313 100644
--- a/2003/i/buzz/src/vision/thresholds.h
+++ b/2003/i/buzz/src/vision/thresholds.h
@@ -18,13 +18,13 @@ class Thresholds
Thresholds (const char *filename);
~Thresholds (void);
// Trouve la zone qui correspond aux composantes.
- unsigned char findZone (unsigned char y, unsigned char u, unsigned char
- v);
+ unsigned char findZone (unsigned char y, unsigned char u, unsigned char v)
+ const;
};
// Trouve la zone qui correspond aux composantes.
inline unsigned char
-Thresholds::findZone (unsigned char y, unsigned char u, unsigned char v)
+Thresholds::findZone (unsigned char y, unsigned char u, unsigned char v) const
{
Threshold *t;
for (t = m_thresholds; t; t = t->next)