Hola eferion, gracias por responder, verás pude con el problema de c++11, lo que tenía que hacer era en propiedades del proyecto, luego a c++ compiler y en c++ standard pongo c++11 y solucionado, sólo q en ManPersonas.h muestra pocos errores:
Código C++:
Ver original#include <algorithm>
#include <list> // error - In file included from
#include "Persona.h"
#ifndef CONTRPERSONAS_H
#define CONTRPERSONAS_H
using namespace std;
std::list<Persona>lista;
static int maxIdP = 0;
int getMaxIdP(){
return ++maxIdP;
}
bool check(const Persona& p){
int num_reg = std::count_if(lista.begin(),lista.end(),[&p](const Persona& p2){
return p2.nom == p.nom;
});
return num_reg > 0;
}
Persona* getRow(std::string xnom){
Persona* toReturn = NULL; // inicialización de puntero nulo
auto it = std::find_if(lista.begin,lista.end,[&xnom](const Persona& p){
return p.nom == xnom;
}); // error - no matching function for call to find_if
if( it != lista.end())
toReturn = &(it); // it
return toReturn;
}
Persona* getRow(int xid){
Persona* toReturn = NULL; // inicialización de puntero nulo
auto it = std::find_if(lista.begin,lista.end,[&xid](const Persona& p){
return p.id == xid;
}); // error - no matching function for call to find_if
if( it != lista.end())
toReturn = &(it); // it
return toReturn;
}
bool create(Persona p){
if(check(p)){
return false;
}
else{
lista.push_back(p);
return true;
}
}
bool update(Persona p){ }
if(check(p)){
lista.
remove(p
); // error - in file included from }
}
std::list<Persona> read(){
return lista;
}
#endif /* CONTRPERSONAS_H */
Espero sus respuestas y saludos