Quindi anche se cosģ non ho errori non va bene?

codice:
#ifndef NODE_HPP
#define	NODE_HPP


#include <stdio.h>
#include "Film.hpp"

using namespace std;

class Node 
{
        protected:
            Film film;
            string copie;
            Node* next;
            
        public:
            Node(Film element, string copie);
            ~Node();
    
    
           
           void setFilm(Film object);
           void setNext(Node * next);
           void setCopie(string aggiornamento);
           Node* getNext();
           Film getFilm();
           string getCopie();
};




#endif	/* NODE_HPP */