El error que da el visual es:
Error 1 error C2061: syntax error : identifier 'Documento' c:\users\luis roa\desktop\proyecto\proyecto\docprestado.h 9
Error 2 error C2143: syntax error : missing ';' before '*' c:\users\luis roa\desktop\proyecto\proyecto\docprestado.h 11
Este es el Código de la Clase:
Cita:
#pragma once
#if !defined(_DOCPRESTADO_H)
#define _DOCPRESTADO_H
#include"Documento.h"
class DocPrestado
{
public:
DocPrestado(Documento *prestado,int tiempo);
~DocPrestado();
Documento* getPrestado();
int getTiempo();
private:
int tiempo;
Documento *prestado;
};
#endif //_DOCPRESTADO_H
#if !defined(_DOCPRESTADO_H)
#define _DOCPRESTADO_H
#include"Documento.h"
class DocPrestado
{
public:
DocPrestado(Documento *prestado,int tiempo);
~DocPrestado();
Documento* getPrestado();
int getTiempo();
private:
int tiempo;
Documento *prestado;
};
#endif //_DOCPRESTADO_H