Advertisement
nhorquender

func.h

Jun 24th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. /*
  2.  * File:   Funciones.h
  3.  * Author: Sebastián Araya
  4.  *
  5.  * Created on 23 de junio de 2012, 16:34
  6.  */
  7.  
  8. #ifndef FUNCIONES_H
  9. #define FUNCIONES_H
  10.  
  11. #include <string.h>
  12. #include <cstdlib>
  13. #include <iostream>
  14. #include <list>
  15. #include "Alumno.h"
  16. #include "Autor.h"
  17. #include "Libro.h"
  18. #include <fstream>
  19.  
  20. using namespace std;
  21.  
  22. void llenar(list<Libro *> &listaLibros, list<Alumno*> &listaAlumnos, list<Autor*> &listaAutores);
  23. void menu(list<Libro*> &listaLibros, list<Alumno*> &listaAlumnos, list<Autor*> &listaAutores);
  24. void pedirLibro(list<Libro *> &listaLibros, list<Alumno*> &listaAlumnos);
  25.  
  26. #endif  /* FUNCIONES_H */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement