Advertisement
davidcastrosalinas

20201020 Herencia Simple utilizando archivos

Oct 20th, 2020
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.93 KB | None | 0 0
  1. //archivo main.cpp
  2. #include <iostream>
  3.  
  4. using namespace std;
  5. #include "Persona.h"
  6.  
  7. int main()
  8. {
  9.     Persona p;
  10.     p.ver();
  11.     p.verFecha();
  12.     return 0;
  13. }
  14.  
  15.  
  16. //archivo Persona.h
  17. #ifndef PERSONA_H_INCLUDED
  18. #define PERSONA_H_INCLUDED
  19.  
  20. #include "Fecha.h"
  21. class Persona: public Fecha{
  22. public:
  23.     Persona(){
  24.     }
  25.     void ver();
  26. };
  27.  
  28. #endif // PERSONA_H_INCLUDED
  29.  
  30.  
  31. //archivo Persona.cpp
  32. #include "Persona.h"
  33. #include "iostream"
  34. /***HACE FALTA AGREGAR EL ARCHIVO AL PROYECTO**/
  35. void Persona::ver(){
  36.     std::cout << "ejemplo de clase persona";
  37. }
  38.  
  39.  
  40. //archivo Fecha.h
  41. #ifndef FECHA_H_INCLUDED
  42. #define FECHA_H_INCLUDED
  43.  
  44. class Fecha{
  45. public:
  46.     void verFecha();
  47.     void ver();
  48. };
  49.  
  50. #endif // FECHA_H_INCLUDED
  51.  
  52. //archivo fecha.cpp
  53.  
  54. #include "Fecha.h"
  55. #include "iostream"
  56.  
  57. void Fecha::verFecha(){
  58.     std::cout <<"esta es la fecha";
  59. }
  60.  
  61. void Fecha::ver(){
  62.     std::cout <<" mostrando la fecha";
  63. }
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement