Bien mi problema es el siguiente, tengo dos clases definidas, A y B y necesito que la Clase A tenga apuntadores a B y que B tenga apuntadores a A, ejemplo:
Código
#ifndef PRIMERACLASE_H #define PRIMERACLASE_H #include "Segundaclase.h" class Primeraclase { public: .... Segundaclase* getValor(); private: Segundaclase* comienza; Segundaclase* termina; }; #endif /* PRIMERACLASE_H */
Código
#ifndef SEGUNDACLASE_H #define SEGUNDACLASE_H #include "Primeraclase.h" class Segundaclase { public: .... Primeraclase* getValor(); private: Primeraclase* comienza; Primeraclase* termina; }; #endif /* SEGUNDACLASE_H */
Esto me genera problemas al momento de compilar, alguien tiene idea de como arreglarlo?