Sé que hay un par de preguntas similares (circular incluir) a stackoverflow y otros sitios web. Pero aún no puedo resolverlo y no aparecen soluciones. Entonces me gustaría publicar mi específico.error: class-name esperado antes de '{' token
Tengo una clase de evento que tiene 2 y en realidad más subclase, que son Llegada y aterrizaje. El compilador (g ++) se queja:
g++ -c -Wall -g -DDEBUG Event.cpp -o Event.o
In file included from Event.h:15,
from Event.cpp:8:
Landing.h:13: error: expected class-name before ‘{’ token
make: *** [Event.o] Error 1
La gente dijo que se trata de una circular incluyen. Los 3 archivos de cabecera (Event.h Arrival.h Landing.h) son los siguientes:
la Event.h:
#ifndef EVENT_H_
#define EVENT_H_
#include "common.h"
#include "Item.h"
#include "Flight.h"
#include "Landing.h"
class Arrival;
class Event : public Item {
public:
Event(Flight* flight, int time);
virtual ~Event();
virtual void occur() = 0;
virtual string extraInfo() = 0; // extra info for each concrete event
// @implement
int compareTo(Comparable* b);
void print();
protected:
/************** this is why I wanna include Landing.h *******************/
Landing* createNewLanding(Arrival* arrival); // return a Landing obj based on arrival's info
private:
Flight* flight;
int time; // when this event occurs
};
#endif /* EVENT_H_ */
Arrival.h:
#ifndef ARRIVAL_H_
#define ARRIVAL_H_
#include "Event.h"
class Arrival: public Event {
public:
Arrival(Flight* flight, int time);
virtual ~Arrival();
void occur();
string extraInfo();
};
#endif /* ARRIVAL_H_ */
Landing.h
#ifndef LANDING_H_
#define LANDING_H_
#include "Event.h"
class Landing: public Event {/************** g++ complains here ****************/
public:
static const int PERMISSION_TIME;
Landing(Flight* flight, int time);
virtual ~Landing();
void occur();
string extraInfo();
};
#endif /* LANDING_H_ */
ACTUALIZACIÓN:
I inc luded Landing.h debido al constructor de aterrizaje se llama en el Evento :: createNewLanding método:
Landing* Event::createNewLanding(Arrival* arrival) {
return new Landing(flight, time + Landing::PERMISSION_TIME);
}
De acuerdo con la salida del compilador, el error está en 'Landing.h' (en la línea 13). ¿Por qué pusiste un comentario en 'Event.h' diciendo que el error estaba allí? –
@Ben Voigt lo siento, he cambiado – draw