Commit ce024b1e authored by Alexis Lebis's avatar Alexis Lebis

renamed mapCourse

parent 24b89ed8
...@@ -179,7 +179,7 @@ int CSDVP::CSDVP_COUNTER = 0; ...@@ -179,7 +179,7 @@ int CSDVP::CSDVP_COUNTER = 0;
} }
} }
} }
int CSDVP::mapCoursePosition(const Course & c) int CSDVP::mapCourseToPosition(const Course & c)
{ {
for(int i = 0; i << this->coursesCatalogue().size(); i++) for(int i = 0; i << this->coursesCatalogue().size(); i++)
if(c == this->coursesCatalogue().at(i)) if(c == this->coursesCatalogue().at(i))
......
...@@ -136,7 +136,7 @@ class CSDVP ...@@ -136,7 +136,7 @@ class CSDVP
/** Maps a course into its position inside the this->courseCatalogue(). /** Maps a course into its position inside the this->courseCatalogue().
* returns the index of the course within the coursesCatalogue [0;size[ ; otherwise return -1 if the course is not found. * returns the index of the course within the coursesCatalogue [0;size[ ; otherwise return -1 if the course is not found.
*/ */
int mapCoursePosition(const Course & c); int mapCourseToPosition(const Course & c);
///@todo getDecayPolitic ///@todo getDecayPolitic
// === MUTATOR // === MUTATOR
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment