Advertisement
jtentor

Libro.cpp

May 3rd, 2020
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.81 KB | None | 0 0
  1. //
  2. // Created by Julio Tentor <jtentor@fi.unju.edu.ar>
  3. //
  4.  
  5. #include "Libro.h"
  6.  
  7. Libro::Libro(std::string const& titulo, std::string const& autor,
  8.         std::string const& editorial, int const& anio, float const& precio) {
  9.     setTitulo(titulo);
  10.     setAutor(autor);
  11.     setEditorial(editorial);
  12.     setAnio(anio);
  13.     setPrecio(precio);
  14. }
  15.  
  16. std::ostream& operator<< (std::ostream& out, const Libro& libro) {
  17.         static_cast<std::ostream&>(out) \
  18.              << "Titulo...: " << libro.getTitulo() << std::endl \
  19.              << "Autor....: " << libro.getAutor() << std::endl \
  20.              << "Editorial: " << libro.getEditorial() << std::endl \
  21.              << "Año......: " << libro.getAnio() << std:: endl \
  22.              << "Precio...: " << libro.getPrecio() << std::endl;
  23.  
  24.         return out;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement