Commit 80f463e7 authored by jerem's avatar jerem

"debug de la function template"

parent dca2c2f1
......@@ -6,6 +6,7 @@
#include "model/magnitude.h"
#include "model/competency.h"
#include "model/course.h"
#include "model/exception/magnitudeException.h"
#include "model/exception/competencyEvolvingException.h"
......@@ -17,6 +18,13 @@ int main(int argc, char* argv[])
Competency c2 = Competency::build(m,"");
Competency c3 = Competency::build(0.5);
std::vector<Competency> vec;
vec.push_back(c);
vec.push_back(c2);
vec.push_back(c3);
Course cour = Course::build();
cour.findInVector(vec, c);
assert(c3.name().compare("Competency#"+std::to_string(c3.id())) == 0);
std::cout << "Default naming ok" << std::endl;
......
......@@ -48,6 +48,7 @@ set(BUILD_DIR build)
# Path
set(PARADISEO_SRC_PATHS
/home/jerem/Softs/ParadisEO-2.0/
${PARADISEO_ROOT}
$ENV{PARADISEO_ROOT}
/usr/local/
......@@ -101,6 +102,7 @@ endif()
set(PARADISEO_FOUND true) # will be set to false if one of the required modules is not found
set(FIND_PARADISEO_LIB_PATHS
/home/jerem/Softs/ParadisEO-2.0/build/
${PARADISEO_ROOT}/${BUILD_DIR}
$ENV{PARADISEO_ROOT}
/usr/local/
......
......@@ -187,27 +187,6 @@ bool Course::_duplicataProtection(std::vector<std::pair<Competency,double>> *tea
return ( it != teached->end() && !( teached->at(index).first == c) );
}
// template<typename T>
// std::pair<int, T> Course::findInVector(const std::vector<T> & vec, const T & findMe)
// {
// std::pair<int, T> res;
// typename std::vector<T>::iterator it = std::find( vec.begin(), vec.end(), findMe);
// if(it == vec.end())
// {
// res.first = -1;
// res.second; //NTD, -1 SHOULD BE USED TO DETECT THAT NOTHING HAS BEEN FOUND
// }
// else
// {
// res.first = std::distance(vec.begin(), it);
// res.second = vec.at(res.first);
// }
// return res;
// }
// === OPERATOR
std::ostream& operator<<(std::ostream& Stream, const Course & c)
{
......
......@@ -55,6 +55,29 @@ class Course
public:
static Course build(int ects = 0, std::string name = "");
template<typename T>
std::pair<int, T> findInVector(std::vector<T> & vec, const T & findMe)
{
std::pair<int, T> res;
typename std::vector<T>::iterator it = std::find( vec.begin(), vec.end(), findMe);
if(it == vec.end())
{
res.first = -1;
res.second; //NTD, -1 SHOULD BE USED TO DETECT THAT NOTHING HAS BEEN FOUND
}
else
{
res.first = std::distance(vec.begin(), it);
res.second = vec.at(res.first);
}
return res;
}
// === GETTER
const int id() const{return this->_id;};
const std::string name() const{return this->_name;};
......
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